Return an estimate of the reciprocal of the L1 condition number of a matrix.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double Condition(
	double[,] a
)
Visual Basic (Declaration)
Public Function Condition ( _
	a As Double(,) _
) As Double
Visual C++
public:
double Condition(
	array<double,2>^ a
)

Parameters

a
Type: array< System..::.Double ,2>[,](,)[,]
The double square matrix for which the reciprocal of the L1 condition number is desired.

Return Value

A double value representing an estimate of the reciprocal of the L1 condition number of the matrix.

See Also