  | NMathFunctionsConditionNumber(DoubleComplexBandMatrix, NormType) Method | 
            Computes an estimate of 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 ConditionNumber(
	DoubleComplexBandMatrix A,
	NormType norm
)
Public Shared Function ConditionNumber ( 
	A As DoubleComplexBandMatrix,
	norm As NormType
) As Double
public:
static double ConditionNumber(
	DoubleComplexBandMatrix^ A, 
	NormType norm
)
static member ConditionNumber : 
        A : DoubleComplexBandMatrix * 
        norm : NormType -> float Parameters
- A  DoubleComplexBandMatrix
 - A banded matrix.
 - norm  NormType
 - The norm used to compute the condition number.
 
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