Estimate Autocorrelation using Python

后端 未结 5 1088
庸人自扰
庸人自扰 2020-12-02 07:34

I would like to perform Autocorrelation on the signal shown below. The time between two consecutive points is 2.5ms (or a repetition rate of 400Hz).

5条回答
  •  醉梦人生
    2020-12-02 07:49

    The statsmodels package adds a autocorrelation function that internally uses np.correlate (according to the statsmodels documentation).

    See: http://statsmodels.sourceforge.net/stable/generated/statsmodels.tsa.stattools.acf.html#statsmodels.tsa.stattools.acf

提交回复
热议问题