Click or drag to resize

EnumerableExtensionsEquallySpacedByStartStepCount Method

Gets an enumeration where the elements are given by start + i * step, i=[0, count-1].

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static IEnumerable<double> EquallySpacedByStartStepCount(
	double start,
	double step,
	int count
)

Parameters

start  Double
The start value.
step  Double
The step value.
count  Int32
The number of values in the enumeration.

Return Value

IEnumerableDouble
An enumeration of equally spaced values.
See Also