Student[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) parameters; for a complete list, see LinearAlgebra[RowSpace]
The RowSpace(A) (ColumnSpace(A)) command 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.
with⁡StudentLinearAlgebra:
A≔1,2,0|0,2,6|0,1,3|1,1,−3
A≔10012211063−3
RowSpace⁡A
1001,0112−12
ColumnSpace⁡A
10−6,013
See Also
LinearAlgebra[RowSpace]
Student[LinearAlgebra][Basis]
Student[LinearAlgebra][LUDecomposition]
Download Help Document