ILinearAlgebraOperations<T>.FullMatrixNorm Method

Computes the norm of a general rectangular matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
T FullMatrixNorm(
	MatrixNorm norm,
	int m,
	int n,
	Array2D<T> 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  Array2D<T>
A T array that contains the elements of the matrix.

Return Value

T
The norm of the matrix.

Remarks

This method corresponds to the LAPACK routine ?LANGE.

See Also