ManagedLinearAlgebraOperationsOfSingle.TriangularBandMatrixNorm Method

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.0

Overload List

TriangularBandMatrixNorm(MatrixNorm, MatrixTriangle, MatrixDiagonal, Int32, Int32, ReadOnlySpan<Complex<Single>>, Int32)

Computes the norm of a triangular band matrix.
C#
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

Single
The 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.
C#
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

Single
The 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.

See Also