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

Online Help

All Products    Maple    MapleSim


LinearAlgebra

  

ConstantMatrix

  

construct a constant Matrix

  

ConstantVector

  

construct a constant Vector

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ConstantMatrix(s, r, c, cpt, options)

ConstantVector[o](s, d, cpt, options)

Parameters

s

-

algebraic expression; 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

d

-

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

cpt

-

(optional) equation of the form compact=true or false; selects the compact form of the output

options

-

(optional); constructor options for the result object

[o]

-

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

Description

• 

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

  

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

• 

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

  

The ConstantVector[row](s, d) function acts 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.

• 

If the compact option (cpt) is omitted, or, if it is included in the calling sequence as just the symbol compact or in the form compact=true, then the result is built by using a shape function designed to minimize storage. If the option is entered as compact=false, a full rectangular object is constructed.

• 

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

  

If a shape value is not provided, then the shape of the resulting object is determined by the compact option. Otherwise, a result with the specified shape is constructed with all values set to const via the fill parameter to the Matrix (or Vector) constructor.

  

If readonly=false is included, it is ignored unless the default shape (constant[const]) is overridden by also including a mutable shape in options.

• 

This function is part of the LinearAlgebra package, and so it can be used in the form ConstantMatrix(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[ConstantMatrix](..).

Examples

withLinearAlgebra:

ConstantMatrix4,5,2

4444444444

(1)

ConstantMatrixn,4,shape=triangularupper

nnnn0nnn00nn000n

(2)

vConstantVectorrowx,4

vxxxx

(3)

VectorOptionsv,shape

constantx

(4)

v2ConstantVector3,2,compact=false

v233

(5)

VectorOptionsv2,shape

(6)

See Also

Matrix

Vector