ILinearAlgebraOperations<T>.BandMatrixNorm Method

Computes the norm of a general band matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
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

T
The norm of the matrix.

Remarks

This method corresponds to the LAPACK routine ?LANGB.

See Also