Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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