Get time signal back after NFFT
4 次查看(过去 30 天)
显示 更早的评论
Hello,
I have the following code, which generate a complex chirp signal.
fs = 200e6
t=0:1/fs:1e-3;
f0=1;
f1=2e6;
t1 = 1e-3;
i = mychirp(t,f0,t1,f1);
q = mychirp_sine(t,f0,t1,f1);
x = complex(i,q);
L = length(x);
NFFT = 2^nextpow2(L)*4;
X = fftshift((fft(x,NFFT)));
f = fs*(-NFFT/2:NFFT/2-1)/NFFT;
Here is what I got in time domain and frequency domain :
Now I would like to go back in the Time domain after my FFT computed with the factor NFFT. Does anyone know how to compute the time vector in order to plot(timeVector,ifft(X)) ? I would like to plot my original signal after the IFFT.
Thank you.
0 个评论
回答(1 个)
Christoph F.
2017-9-27
The time vector as as many elements as X, and they are spaced 1/(f(2)-f(1)) apart.
And you will probably need to reverse the fftshift performed on X with ifftshift(X) before doing an ifft.
2 个评论
Christoph F.
2017-9-28
I see it now.
In that case, transforming back to the original time domain signal requires knowledge of the original sampling rate and the number of padding samples used in fft(). This information can no longer be determined from the vector f.
One approach would be:
1. Transform back to the zero-padded signal
xc = ifft(ifftshift(X))
2. Remove the padding zeros
xc = xc(1:length(x))
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!