problem with Fast Fourier Transform (FFT)

Hello,
This is part of my code to convert data in time domain using ifft.
for k = 1:numSymbols,
y= y + data(k)*exp(j*2*pi*Fsub(k)*t);
end
and how do i write the fft if i wanna change y back into frequency domain?..

답변 (1개)

Image Analyst
Image Analyst 2013년 4월 13일

0 개 추천

ffty = fft(y);
% Get back
y = ifft(ffty);

카테고리

도움말 센터File Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기

태그

질문:

2013년 4월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by