4

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?

Suever
  • 64,497
  • 14
  • 82
  • 101
Jorge Rodriguez
  • 150
  • 2
  • 13
  • 1
    You may find something of interest in [scipy.signal](http://docs.scipy.org/doc/scipy/reference/signal.html). I don't see anything equivalent to those MATLAB functions, but I'm not well-versed in signal processing, so perhaps I've missed them. – jme Jun 17 '15 at 18:19
  • 1
    Maybe pywavelet (http://www.pybytes.com/pywavelets/#) will have similar functionality – Ed Smith Jun 22 '15 at 20:29

1 Answers1

-1

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

Peter Droz
  • 36
  • 8