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 ExchangeFourier 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