arange
Return evenly spaced values within interval
Call signature:
arange(start, end, step=1)
Help text:
xx = range(start, end, step) returns numbers in the closed interval [start, end] with a step size of step.
This is similar to numpy's arange, but care is taken that the endpoint is included if step divides the interval evenly. Also, the number zero is protected from numerical error.
Download pdf