BaseBandMatrix Constructor |
Initializes a new instance of the BandMatrix class of the given size.
Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public BaseBandMatrix(
int rows,
int columns,
int lowerBandWidth,
int upperBandWidth
)
Public Sub New (
rows As Integer,
columns As Integer,
lowerBandWidth As Integer,
upperBandWidth As Integer
)
Request Example
View SourceParameters
- rows Int32
- Number of rows.
- columns Int32
- Number of columns.
- lowerBandWidth Int32
- Number of bands below the main diagonal
- upperBandWidth Int32
- Number of bands above the main diagonal
See Also