MatrixAdd - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


LinearAlgebra

  

MatrixAdd

  

compute a linear combination of two Matrices

  

VectorAdd

  

compute a linear combination of two Vectors

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

MatrixAdd(A, B, c1, c2, ip, options)

VectorAdd(U, V, c1, c2, ip, options)

Parameters

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

Description

• 

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=c1Ai,j+c2Bi,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 MVectorAddU,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=c1Ui+c2Vi.

• 

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](..).

Examples

withLinearAlgebra:

Aa,d|b,e|c,f

Aabcdef

(1)

MatrixAddA,IdentityMatrix2,3

a+1bcde+1f

(2)

MatrixAddConstantMatrix1,2,3,A,n

n+an+bn+cn+dn+en+f

(3)

V3|0|0

V300

(4)

VectorAddV,i|j|k,1,2,inplace

32i2j2k

(5)

V

32i2j2k

(6)

See Also

Matrix

type/scalar

Vector