필터 지우기
필터 지우기

fft of vector row

조회 수: 6 (최근 30일)
Batoule khadi
Batoule khadi 2020년 2월 27일
답변: Star Strider 2020년 2월 27일
hi everyone , can u help me to implement this algorithm

답변 (1개)

Star Strider
Star Strider 2020년 2월 27일
The fft function can calculate the Fourier transform across any dimensions you choose. I do not understand the notation in that image, so this is something of a guess.
To calculate the Fourier transform of x down the columns:
X1 = fft(x);
and across the rows:
X2 = fft(x,[],2);
then do the same thing to take the mean values of the magnitudes:
Xc = mean(abs(X1));
Xr = mean(abs(X2),2);
That should do what you want.
MATLAB dimension conventions can be a bit confusing when first encountered.

카테고리

Help CenterFile Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by