signal.fftconvolve equivalent in Matlab

11 ビュー (過去 30 日間)
Avik Mahata
Avik Mahata 2021 年 6 月 26 日
回答済み: Swetha Polemoni 2021 年 6 月 29 日
I hav a matrix of dipole moment and I need to get the autocorrelation funcion. In Python it does with these two lines of code. I am wondering what will be the Matlab equivalent for this two lines,
autocorr_x_full = (signal.fftconvolve(dipole_x_shifted,dipole_x[::-1], mode='same')[(-len(time)):] / np.arange(len(time), 0, -1))
autocorr = autocorr_full[:int(len(time) * fraction_autocorrelation_function_to_fft)]

回答 (1 件)

Swetha Polemoni
Swetha Polemoni 2021 年 6 月 29 日
Hi Avik Mahata
It is my understanding that you want to do convolution and autocorrelation in matlab. You can use Matlab functions 'conv' and'autocorr' for convolution and autocorrelation.

カテゴリ

Help Center および File ExchangeCall Python from MATLAB についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by