  | NMathFunctionsConditionNumber(FloatTriDiagMatrix, Boolean) Method | 
            Computes an estimate of the reciprocal of the condition number of a given matrix 
            in the 1-norm.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static float ConditionNumber(
	FloatTriDiagMatrix A,
	bool isSymmetricPD
)
Public Shared Function ConditionNumber ( 
	A As FloatTriDiagMatrix,
	isSymmetricPD As Boolean
) As Single
public:
static float ConditionNumber(
	FloatTriDiagMatrix^ A, 
	bool isSymmetricPD
)
static member ConditionNumber : 
        A : FloatTriDiagMatrix * 
        isSymmetricPD : bool -> float32 Parameters
- A  FloatTriDiagMatrix
 - A tridiagonal matrix.
 - isSymmetricPD  Boolean
 - true if A is symmetric and positive
            definite.
 
Return Value
SingleAn 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