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

Online Help

All Products    Maple    MapleSim


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); constructor options for the result object

Description

• 

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](..).

Examples

withLinearAlgebra:

A1,2,0|0,2,6|0,0,4|0,0,0

A100022000640

(1)

RowSpaceA

1000,0100,0010

(2)

ColumnSpaceA

100,010,001

(3)

RowSpace0,0|0,0

(4)

Bx,0|y,1

Bxy01

(5)

ColumnSpaceB

10,01

(6)

C154,34sqrt10,14sqrt165|34sqrt10,32,14sqrt66|14sqrt165,14sqrt66,114

C154310416543104326641654664114

(7)

Normalizerradnormal

Normalizerradnormal

(8)

ColumnSpaceC

110516515

(9)

See Also

LinearAlgebra[Basis]

LinearAlgebra[LUDecomposition]

Matrix

Vector