Managed
            
            Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.1.5
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.1.5
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<Complex<Single>>, Int32)
            Computes the norm of a general band matrix.
            
public override float BandMatrixNorm(
	MatrixNorm norm,
	int n,
	int kl,
	int ku,
	ReadOnlySpan<Complex<float>> 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<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.
BandMatrixNorm(MatrixNorm, Int32, Int32, Int32, ReadOnlySpan<Single>, Int32)
            Computes the norm of a general band matrix.
            
public override float BandMatrixNorm(
	MatrixNorm norm,
	int n,
	int kl,
	int ku,
	ReadOnlySpan<float> 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<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>.BandMatrixNorm(MatrixNorm, Int32, Int32, Int32, ReadOnlySpan<T>, Int32)Remarks
This method corresponds to the LAPACK routine ?LANGB.