Is there any prospect for easily getting ranges of floats in numpy, rather than
just integers? In R, for example, you can specify a decimal value for the step
size. It would be great to be able to do the following:

arange(0, 100, 0.1)

for a sequence from 0 to 100 in steps of 0.1. It seems rather unpythonic to 
have to do this:

arange(0, 1000)/10.

_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to