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
Overview of the linalg Package
Calling Sequence
linalg[command](arguments)
command(arguments)
Description
Important: The linalg package has been deprecated. Use the superseding packages, LinearAlgebra and VectorCalculus, instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
Each command in the linalg package can be accessed by using either the long form or the short form of the command name in the command calling sequence.
As an example of short form usage, you can multiply two matrices A and B, by using the with command:
with(linalg,multiply); multiply(A,B);
Instead of the multiply command, you can use the evalm evaluator as follows:
evalm( A &* B );
List of linalg Package Commands
The following is a list of available commands.
addcol
addrow
adj
adjoint
angle
augment
backsub
band
basis
bezout
BlockDiagonal
blockmatrix
charmat
charpoly
cholesky
col
coldim
colspace
colspan
companion
concat
cond
copyinto
crossprod
curl
definite
delcols
delrows
det
diag
diverge
dotprod
eigenvalues
eigenvectors
entermatrix
equal
exponential
extend
ffgausselim
fibonacci
forwardsub
frobenius
gausselim
gaussjord
geneqns
genmatrix
grad
GramSchmidt
hadamard
hermite
hessian
hilbert
htranspose
ihermite
indexfunc
innerprod
intbasis
inverse
ismith
issimilar
iszero
jacobian
jordan
JordanBlock
kernel
laplacian
leastsqrs
linsolve
LUdecomp
matadd
matrix
minor
minpoly
mulcol
mulrow
multiply
norm
normalize
nullspace
orthog
permanent
pivot
potential
QRdecomp
randmatrix
randvector
rank
ratform
references
row
rowdim
rowspace
rowspan
rref
scalarmul
singularvals
smith
stackmatrix
submatrix
subvector
sumbasis
swapcol
swaprow
sylvester
toeplitz
trace
transpose
vandermonde
vecpotent
vectdim
vector
wronskian
To display the help page for a particular linalg command, see Getting Help with a Command in a Package.
Note that the linalg commands for manipulating vectors and matrices expect as input the Maple types vector and matrix, rather than more general arrays. In particular, subscripts are indexed from 1.
See Also
linalg(deprecated)[matrix], linalg(deprecated)[vector], LinearAlgebra, Matrix, mod, UsingPackages, Vector, VectorCalculus, with
Download Help Document