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

Online Help

All Products    Maple    MapleSim


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

Calling Sequence

RowSpace(A, options)

ColumnSpace(A, options)

Parameters

A

-

Matrix

options

-

(optional) parameters; for a complete list, see LinearAlgebra[RowSpace]

Description

• 

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.

Examples

withStudentLinearAlgebra:

A1,2,0|0,2,6|0,1,3|1,1,3

A10012211063−3

(1)

RowSpaceA

1001,011212

(2)

ColumnSpaceA

10−6,013

(3)

See Also

LinearAlgebra[RowSpace]

Student[LinearAlgebra]

Student[LinearAlgebra][Basis]

Student[LinearAlgebra][LUDecomposition]