ConstantMatrix - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Student[LinearAlgebra]

  

ConstantMatrix

  

construct a constant Matrix

  

ConstantVector

  

construct a constant Vector

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ConstantMatrix(s, r, c, options)

ConstantVector[o](s, d, options)

Parameters

s

-

algebraic expression; the constant value in the Matrix or Vector

r

-

(optional) non-negative integer; row dimension of the resulting Matrix

c

-

(optional) non-negative integer; column dimension of the resulting Matrix

[o]

-

(optional) use either [row] or [column]; specifies the orientation of the resulting Vector

d

-

(optional) non-negative integer; dimension of the resulting Vector

options

-

(optional) parameters; for a complete list, see LinearAlgebra[ConstantMatrix]

Description

• 

The ConstantMatrix(s, r, c) command returns an r⁢x⁢c Matrix in which all entries have the value s.

  

The ConstantMatrix(s, r) command returns an r⁢x⁢r Matrix in which all entries have the value s.

  

The ConstantMatrix(s) command returns an 0⁢x⁢0 Matrix.

• 

The ConstantVector(s, d) command returns a d-dimensional column Vector in which all entries have the value s.

  

The ConstantVector[row](s, d) command behaves like ConstantVector(s, d) except that a row Vector is returned.  If the orientation option is omitted or if ConstantVector[column](s, d) is used, a column Vector is returned.

  

If the dimension is not provided, it defaults to zero.

Examples

> 

with⁡StudentLinearAlgebra:

> 

ConstantMatrix⁡4,5,2

4444444444

(1)
> 

ConstantMatrix⁡n,3

nnnnnnnnn

(2)
> 

ConstantVectorrow⁡x,4

xxxx

(3)
> 

ConstantVector⁡3,2

33

(4)

See Also

LinearAlgebra[ConstantMatrix]

Student[LinearAlgebra]