  | NMathFunctionsConditionNumber(DoubleHermitianMatrix, 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 double ConditionNumber(
	DoubleHermitianMatrix A,
	bool isPositiveDefinite
)
Public Shared Function ConditionNumber ( 
	A As DoubleHermitianMatrix,
	isPositiveDefinite As Boolean
) As Double
public:
static double ConditionNumber(
	DoubleHermitianMatrix^ A, 
	bool isPositiveDefinite
)
static member ConditionNumber : 
        A : DoubleHermitianMatrix * 
        isPositiveDefinite : bool -> float Parameters
- A  DoubleHermitianMatrix
 - An Hermitian matrix.
 - isPositiveDefinite  Boolean
 - true if A is positive definite.
 
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