Generic Linear Algebra Operations<T>.Full Matrix Norm Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Overload List
Full | |
Full | Computes the norm of a general rectangular matrix. |
Full | Computes the norm of a general rectangular matrix. |
Full | Computes the norm of a general rectangular matrix. |
Full | Computes the norm of a general rectangular matrix. |
FullMatrixNorm(MatrixNorm, Int32, Int32, ReadOnlySpan<T>, Int32)
Computes the norm of a general rectangular matrix.
public override 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 complex array that contains the elements of the matrix.
- lda Int32
- The leading dimension of the matrix a.
Return Value
TThe norm of the matrix.
Implements
ILinearAlgebraOperations<T>.FullMatrixNorm(MatrixNorm, Int32, Int32, ReadOnlySpan<T>, Int32)Remarks
This method corresponds to the LAPACK routine ?LANGE.
FullMatrixNorm(MatrixNorm, Int32, Int32, ReadOnlySpan<Complex<T>>, Int32)
Computes the norm of a general rectangular matrix.
public override T FullMatrixNorm(
MatrixNorm norm,
int m,
int n,
ReadOnlySpan<Complex<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<Complex<T>>
- A complex array that contains the elements of the matrix.
- lda Int32
- The leading dimension of the matrix a.
Return Value
TThe norm of the matrix.
Remarks
This method corresponds to the LAPACK routine ?LANGE.