Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
LinearAlgebra[Generic][LinearSolve] - compute the solutions of A x = b
Calling Sequence
LinearSolve[F](A,b)
LinearSolve[F](A,b,options)
Parameters
F
-
the domain of computation, a field
A
rectangular Matrix over values in F
b
Vector or Matrix of values in F
options
options for controlling the behavior of LinearSolve
Description
The (indexed) parameter F, which specifies the domain of computation, a field, must be a Maple table/module which has the following values/exports:
F[`0`]: a constant for the zero of the ring F
F[`1`]: a constant for the (multiplicative) identity of F
F[`+`]: a procedure for adding elements of F (nary)
F[`-`]: a procedure for negating and subtracting elements of F (unary and binary)
F[`*`]: a procedure for multiplying two elements of F (commutative)
F[`/`]: a procedure for dividing two elements of F
F[`=`]: a boolean procedure for testing if two elements in F are equal
If the linear system A x = b is consistent, LinearSolve[F](A,b) returns (v,B) where v is Vector and B = [b1,b2,...,] is a list of Vectors. The solutions of the system are the Vectors { x + a1 b1 + a2 b2 + ... } for a1, a2, ... in F. Thus v is a particular solution, and B is a basis for the solutions of A x = 0. If the dimension of the solution space is 0 then B will be the empty list.
If the optional argument output=[...] is present, it specifies what values are returned, and in what order. The keywords in the output options may be any of solution, basis, or dimension, in any order. The default output format corresponds to output=[solution,basis] meaning a particular solution and a basis for the solutions of A x = b is output. If output=[solution] is specified, the output is a single Vector of solutions in terms of parameters. The parameter names may be specified by the optional argument free=t described below. By default, the names _t[1], _t[2], ... are used.
If free=t is specified, where t is a symbol or list of names, the solution(s) are returned as a single Vector of values parameterized by t[1], t[2], ..., t[d]. Note, this option is only available when the output=[solution] option is also specified.
Examples
See Also
LinearAlgebra[Generic], LinearAlgebra[LinearSolve]
Download Help Document