ILinear Algebra Operations<T, TVector, TMatrix>.Full Matrix Norm Method
Computes the norm of a general rectangular matrix.
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
The norm of the matrix.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
T FullMatrixNorm(
MatrixNorm norm,
int m,
int n,
TMatrix a
)
Parameters
- norm MatrixNorm
- A MatrixNorm that specifies the type of norm to compute.
- m Int32
- The number of rows of the matrix.
- n Int32
- The number of columns of the matrix.
- a TMatrix
- A T array that contains the elements of the matrix.
Return Value
TThe norm of the matrix.
Remarks
This method corresponds to the LAPACK routine ?LANGE.