Click or drag to resize

SparseVectorStorageTOfValue Method

Creates a sparse vector 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 SparseVectorStorage<T> OfValue(
	int length,
	T value
)

Parameters

length  Int32
The vector length.
value  T
The value assigned to each element.

Return Value

SparseVectorStorageT
The initialized sparse vector storage.
See Also