Computes the one matrix norm of a tridiagonal matrix.

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

Syntax

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

Parameters

A
Type: CenterSpace.NMath.Matrix..::.FloatTriDiagMatrix
A tridiagonal matrix.

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