Return the Complex matrix one norm.

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

Syntax

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

Parameters

a
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
A Complex rectangular array.

Return Value

A double value equal to the maximum of the column sums of the absolute values of the array elements.

See Also