ILinearAlgebraOperations<T, TVector, TMatrix>.FullMatrixNorm Method
Computes the norm of a general rectangular matrix.
DefinitionPermalink
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
The norm of the matrix.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
T FullMatrixNorm(
MatrixNorm norm,
int m,
int n,
TMatrix a
)
ParametersPermalink
- 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 ValuePermalink
TThe norm of the matrix.
RemarksPermalink
This method corresponds to the LAPACK routine ?LANGE.