DiagonalMatrixStorageTOfValue Method |
Creates a diagonal matrix storage initialized with a constant diagonal value.
Namespace: Altaxo.Calc.LinearAlgebra.StorageAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static DiagonalMatrixStorage<T> OfValue(
int rows,
int columns,
T diagonalValue
)
Parameters
- rows Int32
- The number of rows.
- columns Int32
- The number of columns.
- diagonalValue T
- The value assigned to each diagonal entry.
Return Value
DiagonalMatrixStorageTThe initialized diagonal matrix storage.
See Also