  | NMathFunctionsConditionNumber(DoubleLowerTriMatrix) Method | 
            Computes an estimate of the reciprocal of the condition number of a given matrix
            with respect to the one norm.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static double ConditionNumber(
	DoubleLowerTriMatrix A
)
Public Shared Function ConditionNumber ( 
	A As DoubleLowerTriMatrix
) As Double
public:
static double ConditionNumber(
	DoubleLowerTriMatrix^ A
)
static member ConditionNumber : 
        A : DoubleLowerTriMatrix -> float Parameters
- A  DoubleLowerTriMatrix
 - A lower triangular matrix.
 
Return Value
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