ILinearAlgebraOperations<T>.FullMatrixNorm 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.0
C#
T FullMatrixNorm(
	MatrixNorm norm,
	int m,
	int n,
	ReadOnlySpan<T> a,
	int lda
)

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  ReadOnlySpan<T>
A span of T that contains the elements of the matrix.
lda  Int32
The leading dimension of the matrix a.

Return Value

T
The norm of the matrix.

Remarks

This method corresponds to the LAPACK routine ?LANGE.

See Also