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.CollectionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic static IEnumerable<double> RangeDouble(
double start,
int count
)
Parameters
- start Double
- The start.
- count Int32
- The count.
Return Value
IEnumerableDoubleElements from start .. start + count -1 as double values.
See Also