Home > Extreme Optimization Mathematics Library for .NET > Reference > Extreme.Mathematics.LinearAlgebra Namespace > LinearTransformation Class > Methods


Extreme Optimization Mathematics Library for .NET

LinearTransformation.EstimateConditionNumber Method 

Calculates an estimate for the condition number of a matrix.

[Visual Basic]
MustOverride Public Function EstimateConditionNumber() As Double
[C#]
public abstract double EstimateConditionNumber();

Return Value

An estimate for the condition number of the matrix.

Remarks

The condition number of a matrix is defined as the ratio of its largest to its smallest singular value. Because the calculation of singular values is a very expensive operation, an estimate that is cheaper to calculate is usually preferred.

The condition number gives an indication of the worst case loss of precision when solving a system of simultaneous linear equations.

The condition number of a singular matrix is infinite, which is returned as PositiveInfinity.

See Also

LinearTransformation Class | Extreme.Mathematics.LinearAlgebra Namespace | LinearTransformation