Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static method: IEnumerable<double> Range(double, double, double)

  • Declared in: RT.Util.Ut

Declaration

public static IEnumerable<double> Range(
    double start,
    double end,
    double step
)

Summary

Generates a sequence of floating-point numbers within a specified range.

Parameters

doublestart The first value to produce.
doubleend The last value to produce.
doublestep The difference between the values to generate, except that the difference between the last and second-last may be smaller if the interval between start and end isn’t exactly divisible by step.