Computes the one matrix norm of a banded matrix.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static double OneNorm( DoubleComplexBandMatrix A ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function OneNorm ( _ A As DoubleComplexBandMatrix _ ) As Double |
| Visual C++ |
|---|
public: static double OneNorm( DoubleComplexBandMatrix^ A ) |
Parameters
- A
- Type: CenterSpace.NMath.Matrix..::.DoubleComplexBandMatrix
A banded 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.