Click or drag to resize

EnumerableExtensionsRangeDouble Method

Enumerates the range starting from start with count elements, i.e. yields start, start+1, ..., start + count - 1, and returns the elements as double.

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

Parameters

start  Double
The start.
count  Int32
The count.

Return Value

IEnumerableDouble
Elements from start .. start + count -1 as double values.
See Also