Return the infinity norm of a matrix.

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

Syntax

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

Parameters

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

Return Value

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

See Also