Linear Algebra Operations.Band Triangular Multiply In Place<T, TStorage, TStorage2D> Method
Product of a triangular band matrix and a vector.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public static void BandTriangularMultiplyInPlace<T, TStorage, TStorage2D>(
MatrixTriangle storedTriangle,
TransposeOperation transposeOperation,
MatrixDiagonal diagonal,
int n,
int k,
TStorage2D a,
TStorage x
)
where TStorage : Object, IStorageSlice<T>
where TStorage2D : Object, IStorage2D<T>
Parameters
- storedTriangle MatrixTriangle
- Specifies whether the matrix is an upper or lower triangular matrix.
- transposeOperation TransposeOperation
- Specifies the operation to be performed on the matrix a.
- diagonal MatrixDiagonal
- Specifies whether or not a is unit triangular.
- n Int32
- The number of rows and columns in the matrix a.
- k Int32
- The bandwidth of the matrix a.
- a TStorage2D
- A span that contains the elements of the matrix.
- x TStorage
- A reference to a one-dimensional array containing the elements of the vector x. The elements of x are overwritten with the result.
Type Parameters
- T
- TStorage
- TStorage2D
Remarks
This method is similar to the BLAS routine DTBMV.