fun generate(start: Double, end: Double, step: Double): Sequence<Double>
Generates a sequence of doubles between start and end exclusive, in intervals of step.
start - The starting point of the sequence.
start
end - The end point of the sequence (exclusive).
end
step - The interval to space values with in the sequence.
step