FFT of 100 data points

12 vues (au cours des 30 derniers jours)
happy
happy le 24 Nov 2011
Réponse apportée : Ryan T le 18 Mar 2016
Hi..
my problem is this:
I have 100 data taken from 0 to 346.5 microseconds. the time interval for each data is 3.5 microseconds. I need to plot the FFT of this data. Please help me..
Thank you very much.

Réponses (2)

Amith Kamath
Amith Kamath le 24 Nov 2011
if x is your data,
L=length(x);
dt=3.5*10^(-6); %time.
fs=1/dt;
t=(0:1:L-1)*dt; %If you'd like to plot the time signal: plot(t,x)
out=fft(x,L)/L;
figure, plot(fs/2*linspace(0,1,(length(out)/2)+1),abs(out(1:(length(out)/2)+1))),title('One sided Spectrum')
xlabel('Normalized frequency')
ylabel('Magnitude')
  1 commentaire
happy
happy le 26 Nov 2011
Thank you very much! :D
This is a great help to me..
Thank you again... :)

Connectez-vous pour commenter.


Ryan T
Ryan T le 18 Mar 2016
This was extremely helpful... Thank you Amith!

Catégories

En savoir plus sur Fourier Analysis and Filtering dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by