LinearAlgebra
RowSpace
return a basis for the row space of a Matrix
ColumnSpace
return a basis for the column space of a Matrix
Calling Sequence
Parameters
Description
Examples
RowSpace(A, options)
ColumnSpace(A, options)
A
-
Matrix
options
(optional); constructor options for the result object
The RowSpace(A) (ColumnSpace(A)) function returns a list of row (column) Vectors that form a basis for the Vector space spanned by the rows (columns) of Matrix A. The Vectors are returned in canonical form with leading entries 1.
The row space (column space) of a zero Matrix is the empty list.
The constructor options provide additional information (readonly, shape, storage, order, datatype, and attributes) to the 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 constructor options are specified in the calling sequence, each resulting Vector has the same specified options.
This function is part of the LinearAlgebra package, and so it can be used in the form RowSpace(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[RowSpace](..).
with⁡LinearAlgebra:
A≔1,2,0|0,2,6|0,0,4|0,0,0
A≔100022000640
RowSpace⁡A
1000,0100,0010
ColumnSpace⁡A
100,010,001
RowSpace⁡0,0|0,0
B≔x,0|y,1
B≔xy01
ColumnSpace⁡B
10,01
C≔154,−34⁢sqrt⁡10,14⁢sqrt⁡165|−34⁢sqrt⁡10,32,−14⁢sqrt⁡66|14⁢sqrt⁡165,−14⁢sqrt⁡66,114
C≔154−3⁢1041654−3⁢10432−6641654−664114
Normalizer≔radnormal
ColumnSpace⁡C
1−10516515
See Also
LinearAlgebra[Basis]
LinearAlgebra[LUDecomposition]
Vector
Download Help Document