Click or drag to resize

VectorMathCreateEquidistantSequenceByStartEndLength(SByte, SByte, Int32) Method

Creates a read-only vector with equidistant element values from start to end. 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<sbyte> CreateEquidistantSequenceByStartEndLength(
	sbyte start,
	sbyte end,
	int length
)

Parameters

start  SByte
First element of the vector.
end  SByte
Last element of the vector.
length  Int32
Length of the vector.

Return Value

IReadOnlyListSByte
Read-only vector with equidistant element values from start to end.
See Also