What is the difference between the built in float and numpy.float32?
float
numpy.float32
Example
a = 58682.7578125 print type(
Python's standard float type is a C double: http://docs.python.org/2/library/stdtypes.html#typesnumeric
double
NumPy's standard numpy.float is the same, and is also the same as numpy.float64.
numpy.float
numpy.float64