Returns the numerical rank of a matrix using the specified tolerance.
Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public abstract int Rank(
T tolerance
)
Public MustOverride Function Rank (
tolerance As T
) As Integer
public:
virtual int Rank(
T tolerance
) abstract
abstract Rank :
tolerance : 'T -> int
Parameters
- tolerance
- Type: T
The absolute tolerance used to determine if a
matrix component is considered zero.
Return Value
Type:
Int32An integer indicating the numerical rank of the matrix.
The method that is used to determine the rank, as well as the exact meaning of the tolerance,
depend on the implementation. The tolerance is always relative to some norm of the matrix.
Reference