Saturday, 3 September 2011

Calculating fourier transform at any frequency

If what you need is a simple practical method to do the interpolation,
then just multiply the "time domain" samples by the linear-phase
signal expleft(alphacdoti2pik/Nright)N1k=0, where
alphain(0,1) is the sub-sample shift in the "frequency domain."
(I'm not sure if an additional constant of absolute value 1 is
required here). As
already noted in previous answers, the motivation for this is the
assumption that your samples vector xk comes from sampling some
continuous-time signal X(t)tinmathbbR, as in
xk=X(kTs) for k=0,ldots,N1, where TsinmathbbR++ is
the sampling period. If the continuous-time signal has a compactly
supported Fourier transform, than by Shannon's sampling theorem X is determined by the infinite sequence X(kTs)kinmathbbZ for small enough Ts. Since we only have N entries
of the infinite sequence, we loose some information on X. But if
X decays rapidly (rather than having a compact support), then at
least intuitively we don't loose much (I know that this is a dangerous
and imprecise statement :) ).



For example, try the following Matlab lines:



ttt=-32:31;



x_time=exp(-ttt.^2/10);



figure;plot(x_time);



x_freq = fft(x_time);



figure;plot(fftshift(abs(x_freq)));



figure



for alpha=-4:0.5:4



x_time_2 = x_time .* exp(2 * pi * i * (0:63)/64 * alpha);



x_freq=fft(x_time_2);



plot(fftshift(abs(x_freq)));



axis([26,37,0,10]);



grid on;



pause(1);



end

No comments:

Post a Comment