3. PyomoFundamentals

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. The PyEMD should handle the same data type without upcasting but ... ................
................