Return the matrix one norm.

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

Syntax

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

Parameters

a
Type: array< System..::.Double ,2>[,](,)[,]
A double rectangular matrix.

Return Value

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

See Also