Return the matrix one norm.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static double OneNorm(
double[,] a
)
Public Shared Function OneNorm (
a As Double(,)
) As Double
public:
static double OneNorm(
array<double,2>^ a
)
static member OneNorm :
a : float[,] -> float
Parameters
- a
- Type: SystemDouble
A double rectangular matrix.
Return Value
Type:
Double
A
double value equal to the maximum of the column sums of the
absolute values of the matrix elements.
See Also