The difference of machine epsilon between 'float64' and 'float32'. ### float64 ``` print(np.finfo(float).eps) # 2.22044604925e-16 ``` ### float32 ``` print(np.finfo(np.float32).eps) # 1.19209e-07 ``` --- - https://stackoverflow.com/questions/19141432/python-numpy-machine-epsilon
The difference of machine epsilon between 'float64' and 'float32'.
float64
float32