Click or drag to resize

VectorMathCreateEquidistantSequenceByStartStepLength(Int32, Int32, Int32) Method

Creates a read-only vector with equidistant elements with values from start to start+(length-1)*step. The created vector consumes memory only for the three variables, independent of its length.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IReadOnlyList<int> CreateEquidistantSequenceByStartStepLength(
	int start,
	int step,
	int length
)

Parameters

start  Int32
First element of the vector.
step  Int32
Difference between two successive elements.
length  Int32
Length of the vector.

Return Value

IReadOnlyListInt32
Read-only vector with equidistant elements with values from start to start+(length-1)*step.
See Also