EnumerableExtensionsEquallySpacedByStartStepCount Method |
Gets an enumeration where the elements are given by start + i * step, i=[0, count-1].
Namespace: Altaxo.CollectionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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
IEnumerableDoubleAn enumeration of equally spaced values.
See Also