Rank - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Student[LinearAlgebra]

  

Rank

  

compute the rank of a Matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Rank(A)

Parameters

A

-

Matrix

Description

• 

If A does not have a floating-point data type, then the Rank(A) command computes the rank of A by performing Gaussian elimination on the rows of A.

  

The rank of Matrix A is the number of nonzero rows in the resulting Matrix.

• 

If Matrix A has a floating-point data type, a singular value decomposition and analysis is performed.

Examples

> 

with⁡StudentLinearAlgebra:

> 

A≔−7,1,2|2,1,−1|3,0,−1|2,7,−3

A≔−723211072−1−1−3

(1)
> 

Rank⁡A

2

(2)
> 

numelems⁡RowSpace⁡A

2

(3)

See Also

LinearAlgebra[Rank]

Student[LinearAlgebra]

Student[LinearAlgebra][LUDecomposition]

Student[LinearAlgebra][QRDecomposition]

Student[LinearAlgebra][SingularValues]