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 rxc Matrix in which all entries have the value s.
The ConstantMatrix(s, r) command returns an rxr Matrix in which all entries have the value s.
The ConstantMatrix(s) command returns an 0x0 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.
withStudentLinearAlgebra:
ConstantMatrix4,5,2
4444444444
ConstantMatrixn,3
nnnnnnnnn
ConstantVectorrowx,4
xxxx
ConstantVector3,2
33
See Also
LinearAlgebra[ConstantMatrix]
Download Help Document