Managed Linear Algebra Operations Of Single.Triangular Band Matrix Norm Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.3
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.3
Overload List
Triangular | Computes the norm of a triangular band matrix. |
Triangular | Computes the norm of a triangular band matrix. |
TriangularBandMatrixNorm(MatrixNorm, MatrixTriangle, MatrixDiagonal, Int32, Int32, ReadOnlySpan<Complex<Single>>, Int32)
Computes the norm of a triangular band matrix.
public override float TriangularBandMatrixNorm(
MatrixNorm norm,
MatrixTriangle storedTriangle,
MatrixDiagonal diag,
int n,
int k,
ReadOnlySpan<Complex<float>> ab,
int ldab
)
Parameters
- norm MatrixNorm
- A MatrixNorm that specifies the type of norm to compute.
- storedTriangle MatrixTriangle
- A MatrixTriangle value that specifies whether the matrix elements are stored in the upper or lower triangle.
- diag MatrixDiagonal
- Specifies whether or not the matrix is unit triangular.
- n Int32
- The number of rows and columns of the matrix.
- k Int32
- The number of sub- or super-diagonals of the matrix.
- ab ReadOnlySpan<Complex<Single>>
- 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
SingleThe norm of the matrix.
Remarks
This method corresponds to the LAPACK routine ?LANGB.
TriangularBandMatrixNorm(MatrixNorm, MatrixTriangle, MatrixDiagonal, Int32, Int32, ReadOnlySpan<Single>, Int32)
Computes the norm of a triangular band matrix.
public override float TriangularBandMatrixNorm(
MatrixNorm norm,
MatrixTriangle storedTriangle,
MatrixDiagonal diag,
int n,
int k,
ReadOnlySpan<float> ab,
int ldab
)
Parameters
- norm MatrixNorm
- A MatrixNorm that specifies the type of norm to compute.
- storedTriangle MatrixTriangle
- A MatrixTriangle value that specifies whether the matrix elements are stored in the upper or lower triangle.
- diag MatrixDiagonal
- Specifies whether or not the matrix is unit triangular.
- n Int32
- The number of rows and columns of the matrix.
- k Int32
- The number of sub- or super-diagonals of the matrix.
- ab ReadOnlySpan<Single>
- 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
SingleThe norm of the matrix.
Implements
ILinearAlgebraOperations<T>.TriangularBandMatrixNorm(MatrixNorm, MatrixTriangle, MatrixDiagonal, Int32, Int32, ReadOnlySpan<T>, Int32)Remarks
This method corresponds to the LAPACK routine ?LANGB.