Click or drag to resize

VectorBuilderTSparse(Int32, T) Method

Create a new sparse vector and initialize each value using the provided value.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public Vector<T> Sparse(
	int length,
	T value
)

Parameters

length  Int32
The length of the vector.
value  T
The value to initialize each element to.

Return Value

VectorT
The created vector.
See Also