Click or drag to resize

NMathFunctionsOneNorm(FloatTriDiagMatrix) Method

Computes the one matrix norm of a tridiagonal matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static float OneNorm(
	FloatTriDiagMatrix A
)

Parameters

A  FloatTriDiagMatrix
A tridiagonal matrix.

Return Value

Single
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. Its value is equal the them maximum column sum of A.
See Also