Student[LinearAlgebra]
ConstantMatrix
construct a constant Matrix
ConstantVector
construct a constant Vector
Calling Sequence
Parameters
Description
Examples
ConstantMatrix(s, r, c, options)
ConstantVector[o](s, d, options)
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]
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.
with⁡StudentLinearAlgebra:
ConstantMatrix⁡4,5,2
4444444444
ConstantMatrix⁡n,3
nnnnnnnnn
ConstantVectorrow⁡x,4
xxxx
ConstantVector⁡3,2
33
See Also
LinearAlgebra[ConstantMatrix]
Download Help Document