Click or drag to resize

NMathFunctionsOneNorm(DoubleSymBandMatrix) Method

Computes the one matrix norm of a symmetric banded matrix.

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

Parameters

A  DoubleSymBandMatrix
A symmetric banded matrix.

Return Value

Double
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