Generic Linear Algebra Operations<T>.Band 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
Band | Computes the norm of a general band matrix. |
Band | Computes the norm of a general band matrix. |
BandMatrixNorm(MatrixNorm, Int32, Int32, Int32, ReadOnlySpan<T>, Int32)
Computes the norm of a general band matrix.
public override T BandMatrixNorm(
MatrixNorm norm,
int n,
int kl,
int ku,
ReadOnlySpan<T> ab,
int ldab
)
Parameters
- norm MatrixNorm
- A MatrixNorm that specifies the type of norm to compute.
- n Int32
- The number of rows and columns of the matrix.
- kl Int32
- The number of sub-diagonals of the matrix.
- ku Int32
- The number of super-diagonals of the matrix.
- ab ReadOnlySpan<T>
- A span of T that contains the elements of the matrix in band storage format.
- ldab Int32
- The leading dimension of the matrix ab.
Return Value
TThe norm of the matrix.
Implements
ILinearAlgebraOperations<T>.BandMatrixNorm(MatrixNorm, Int32, Int32, Int32, ReadOnlySpan<T>, Int32)Remarks
This method corresponds to the LAPACK routine ?LANGB.
BandMatrixNorm(MatrixNorm, Int32, Int32, Int32, ReadOnlySpan<Complex<T>>, Int32)
Computes the norm of a general band matrix.
public override T BandMatrixNorm(
MatrixNorm norm,
int n,
int kl,
int ku,
ReadOnlySpan<Complex<T>> ab,
int ldab
)
Parameters
- norm MatrixNorm
- A MatrixNorm that specifies the type of norm to compute.
- n Int32
- The number of rows and columns of the matrix.
- kl Int32
- The number of sub-diagonals of the matrix.
- ku Int32
- The number of super-diagonals of the matrix.
- ab ReadOnlySpan<Complex<T>>
- A span of T that contains the elements of the matrix in band storage format.
- ldab Int32
- The leading dimension of the matrix ab.
Return Value
TThe norm of the matrix.
Remarks
This method corresponds to the LAPACK routine ?LANGB.