Chapter 6 Data Types

3.1Change data type Many programming frameworks by default casts numerical values to the largest data type it has. In case of Python’s Numpy that’s going to be numpy.float64. It’s unlikely that one needs such resolution when using EMD*0. A suggestion is to downcast your data, e.g. to float16. ................
................