Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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