problem with Fast Fourier Transform (FFT)
Afficher commentaires plus anciens
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?..
Réponses (1)
Image Analyst
le 13 Avr 2013
ffty = fft(y);
% Get back
y = ifft(ffty);
Catégories
En savoir plus sur Fourier Analysis and Filtering dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!