BandMatrixStorageTOfArray Method |
Creates a band matrix storage from a two-dimensional array.
Namespace: Altaxo.Calc.LinearAlgebra.StorageAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntaxpublic static BandMatrixStorage<T> OfArray(
T[,] array,
int lowerBandwidth,
int upperBandwidth
)
Parameters
- array T
- The source array.
- lowerBandwidth Int32
- The lower bandwidth of the target storage.
- upperBandwidth Int32
- The upper bandwidth of the target storage.
Return Value
BandMatrixStorageTThe initialized band matrix storage.
See Also