Dense Matrix<T, TSlice, TStorage2D>.Get Banded View Method
Constructs a new band matrix from the components of another matrix.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.5.0
C#
A BandMatrix<T> with the same components as the matrix with lower bandwidth lowerBandwidth and upper bandwidth upperBandwidth.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.5.0
public override BandMatrix<T> GetBandedView(
int lowerBandwidth,
int upperBandwidth,
Intent intent
)Parameters
- lowerBandwidth Int32
- The lower bandwidth of the BandMatrix<T>.
- upperBandwidth Int32
- The upper bandwidth of the BandMatrix<T>.
- intent Intent
- An Intent value that specifies the intended use of the returned BandMatrix<T>.
Return Value
BandMatrix<T>A BandMatrix<T> with the same components as the matrix with lower bandwidth lowerBandwidth and upper bandwidth upperBandwidth.