PermutationMatrix.Rank Method

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
Returns the numerical rank of the matrix.

Overload List

Rank() Returns the numerical rank of a matrix.
Rank(Double) Returns the numerical rank of a matrix using the specified tolerance.

Rank(Double)

Returns the numerical rank of a matrix using the specified tolerance.
C#
public override int Rank(
	double tolerance
)

Parameters

tolerance  Double
 

Return Value

Int32
An integer indicating the numerical rank of the matrix.

Remarks

A permutation matrix always has full rank.

See Also