Re: FFT implementation
Thanks viswa!!! if you can post your matlab code i'll try it....
I have some FFT examples in matlab but i cant see how to work this:
----------------------------------------------------------------------------------
t=1:200;
sin1=sin(2*pi*30/1000*t);
sin1c=abs(fft(sin1));
x=[0.005:.005:1];
subplot(2,1,1),plot(x,sin1c,'.'),title('DFT de la señal SIN1');
----------------------------------------------------------------------------------
Here only need a sampled signal and and obtain FFT without problems but when i use a real C function i need real and imaginary parts