  | NMathFunctionsEstimateConditionNumber(DoubleComplexMatrix, NormType) Method | 
            Estimates the reciprocal of the condition number of a given matrix
            in the specified norm type.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static double EstimateConditionNumber(
	DoubleComplexMatrix A,
	NormType norm
)
Public Shared Function EstimateConditionNumber ( 
	A As DoubleComplexMatrix,
	norm As NormType
) As Double
public:
static double EstimateConditionNumber(
	DoubleComplexMatrix^ A, 
	NormType norm
)
static member EstimateConditionNumber : 
        A : DoubleComplexMatrix * 
        norm : NormType -> float Parameters
- A  DoubleComplexMatrix
 - A matrix.
 - norm  NormType
 - The norm used to compute the condition number.
 
Return Value
DoubleAn estimate of the reciprocal of the condition number of 
            the matrix 
A.
Exceptions
Remarks
            The condition number of 
            
A is:
            
 
            where 
AInv is the inverse of the matrix 
A. 
            This function returns an estimate for 
rho = 1/kappa
            which is never less than 
rho and in practice is nearly always less than
            
10*rho.
            
See Also