 | DoubleBandFactConditionNumber Method (NormType) |
Computes an estimate of the reciprocal of the condition number of a given matrix in the
specified norm type.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic double ConditionNumber(
NormType norm
)
Public Function ConditionNumber (
norm As NormType
) As Double
public:
double ConditionNumber(
NormType norm
)
member ConditionNumber :
norm : NormType -> float
Parameters
- norm
- Type: CenterSpace.NMath.CoreNormType
The norm used to compute the condition number.
Return Value
Type:
DoubleAn estimate of the reciprocal of the condition number.
Remarks
The condition number of a matrix
A is:
where
AInv is the inverse of the matrix
A. This function
returns an estimate of the reciprocal of the condition number,
rho = 1/kappa.
See Also