What are the equivalent to Matlab's ddencmp and wdencmp functions in python

961 Views Asked by At

I developed some code in MATLAB and now I'm translating it to python but in MATLAB, I use the functions ddencmp and wdencmp and I cannot find the equivalents in Python.

Does anyone have any suggestions for what library I can use for this purpose in Python?

1

There are 1 best solutions below

0
On

Maybe this person's code will help: Denoising a signal with Pywavelet?

Just like @jme said try

from scipy.signal import savgol_filter

I would comment, but I can't yet :P