Issue with step in linear range function
Closed this issue · 0 comments
arnobaer commented
Linear range class functions.LinearRange
does return an empty sequence if step exceeds the absolute ramp distance.
>>> list(LinearRange(0, 1, 5))
[]
It should return
>>> list(LinearRange(0, 1, 5))
[0.0, 1.0]