BandMatrixStorageTOfInit Method |
Creates a band matrix storage initialized by an index-based initializer.
Namespace: Altaxo.Calc.LinearAlgebra.StorageAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntaxpublic static BandMatrixStorage<T> OfInit(
int rows,
int columns,
int lowerBandwidth,
int upperBandwidth,
Func<int, int, T> init
)
Parameters
- rows Int32
- The number of rows.
- columns Int32
- The number of columns.
- lowerBandwidth Int32
- The lower bandwidth of the target storage.
- upperBandwidth Int32
- The upper bandwidth of the target storage.
- init FuncInt32, Int32, T
- The initializer function for in-band entries.
Return Value
BandMatrixStorageTThe initialized band matrix storage.
See Also