Click or drag to resize

SparseCompressedRowMatrixStorageTOfValue Method

Creates a sparse compressed-row matrix storage initialized with a constant value.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static SparseCompressedRowMatrixStorage<T> OfValue(
	int rows,
	int columns,
	T value
)

Parameters

rows  Int32
The number of rows.
columns  Int32
The number of columns.
value  T
The value assigned to each entry.

Return Value

SparseCompressedRowMatrixStorageT
The initialized sparse matrix storage.
See Also