LinearAlgebra
MatrixAdd
compute a linear combination of two Matrices
VectorAdd
compute a linear combination of two Vectors
Calling Sequence
Parameters
Description
Examples
MatrixAdd(A, B, c1, c2, ip, options)
VectorAdd(U, V, c1, c2, ip, options)
A, B
-
Matrices with consistent dimensions
U, V
Vectors with consistent orientations and dimensions
c1, c2
(optional) scalars
ip
(optional) equation of the form inplace=true or false; specifies if output overwrites input
options
(optional); constructor options for the result object
The MatrixAdd(A, B) function computes the elementwise sum of A and B.
If A and B are mXn Matrices and M := MatrixAdd(A, B), then Mi,j=Ai,j+Bi,j for i=1..m and j=1..n.
If the optional scalar parameters c1 and c2 are included in the calling sequence, then Mi,j=c1⁢Ai,j+c2⁢Bi,j.
The VectorAdd(U, V) function computes the elementwise linear combination of U and V.
If U and V are n-dimensional Vectors with the same orientation and M≔VectorAdd⁡U,V, then Mi=Ui+Vi for i=1..n.
If the optional scalar parameters c1 and c2 are included in the calling sequence, then Mi=c1⁢Ui+c2⁢Vi.
The inplace option (ip) determines where the result is returned. If given as inplace=true, the result overwrites the first argument. If given as inplace=false, or if this option is not included in the calling sequence, the result is returned in a new Matrix (or Vector).
The condition inplace=true can be abbreviated to inplace.
The inplace option must be used with caution since, if the operation fails, the original Matrix (or Vector) argument may be corrupted.
The constructor options provide additional information (readonly, shape, storage, order, datatype, and attributes) to the Matrix or Vector constructor that builds the result. These options may also be provided in the form outputoptions=[...], where [...] represents a Maple list. If a constructor option is provided in both the calling sequence directly and in an outputoptions option, the latter takes precedence (regardless of the order).
The inplace and constructor options are mutually exclusive.
These functions are part of the LinearAlgebra package, and so they can be used in the form MatrixAdd(..) or VectorAdd(..)only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[MatrixAdd](..) or LinearAlgebra[VectorAdd](..).
with⁡LinearAlgebra:
A≔a,d|b,e|c,f
A≔abcdef
MatrixAdd⁡A,IdentityMatrix⁡2,3
a+1bcde+1f
MatrixAdd⁡ConstantMatrix⁡1,2,3,A,n
n+an+bn+cn+dn+en+f
V≔3|0|0
V≔300
VectorAdd⁡V,i|j|k,1,−2,inplace
3−2⁢i−2⁢j−2⁢k
V
See Also
Matrix
type/scalar
Vector
Download Help Document