LinearAlgebraOperations.ComplexFullMatrixNorm<T, TStorage2D> Method

Computes the norm of a general rectangular matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
public static T ComplexFullMatrixNorm<T, TStorage2D>(
	MatrixNorm norm,
	int m,
	int n,
	TStorage2D a
)
where TStorage2D : Object, IStorage2D<Complex<T>, TStorage2D>

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  TStorage2D
A complex number array that contains the elements of the matrix.

Type Parameters

T
TStorage2D

Return Value

T
The norm of the matrix.

Remarks

This method corresponds to the LAPACK routine ?LANGE.

See Also