On Fri, Aug 22, 2008 at 9:35 PM, Chris Fonnesbeck <[EMAIL PROTECTED]> wrote: > 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) >
It appears to be great already :) In other words, arange(0, 100, 0.1) does exactly what you want. -- Nathan Bell [EMAIL PROTECTED] http://graphics.cs.uiuc.edu/~wnbell/ _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
