Computes the norm of a general rectangular matrix.
Namespace: Extreme.Mathematics.LinearAlgebra.ImplementationAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public override double FullMatrixNorm(
MatrixNorm norm,
int m,
int n,
Array2D<DoubleComplex> a
)
Public Overrides Function FullMatrixNorm (
norm As MatrixNorm,
m As Integer,
n As Integer,
a As Array2D(Of DoubleComplex)
) As Double
public:
virtual double FullMatrixNorm(
MatrixNorm norm,
int m,
int n,
Array2D<DoubleComplex> a
) override
abstract FullMatrixNorm :
norm : MatrixNorm *
m : int *
n : int *
a : Array2D<DoubleComplex> -> float
override FullMatrixNorm :
norm : MatrixNorm *
m : int *
n : int *
a : Array2D<DoubleComplex> -> float
Parameters
- norm
- Type: Extreme.MathematicsMatrixNorm
A MatrixNorm that specifies the type of norm to compute. - m
- Type: SystemInt32
The number of rows of the matrix. - n
- Type: SystemInt32
The number of columns of the matrix. - a
- Type: Extreme.CollectionsArray2DDoubleComplex
A DoubleComplex array that contains the elements of the matrix.
Return Value
Type:
DoubleThe norm of the matrix.
This method corresponds to the LAPACK routine
?LANGE.
Numerical Libraries
Supported in: 5.x
Reference