Computes the one matrix norm of a banded matrix.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static float OneNorm(
	FloatComplexBandMatrix A
)
Visual Basic (Declaration)
Public Shared Function OneNorm ( _
	A As FloatComplexBandMatrix _
) As Single
Visual C++
public:
static float OneNorm(
	FloatComplexBandMatrix^ A
)

Return Value

The one matrix norm of A.

Remarks

The one norm of an n-vector x is defined to be |x1| + |x2| +...+ |xn|. This function returns the norm of the matrix A with respect to this vector norm. It's value is equal the them maximum column sum of A.

See Also