Hi, I have an assignment in wich i need to apply FFT in matlab. The problem is that i don't have any function or frequency because all of my data came out from an accelerometer. although i have sampling rate, sampling time interval and number of samples i don't know the frequency or the function of the sine wave formed by my data. Can you please enlighten me how to do my FFT? any help would be greatly appreciated

 채택된 답변

Star Strider
Star Strider 2016년 4월 8일

1 개 추천

See the documentation for the R2015a version of fft. The code between the top two plot figures is what you need to do.

댓글 수: 4

Vasilis Papadopoulos
Vasilis Papadopoulos 2016년 4월 9일
편집: Star Strider 2016년 4월 9일
if you mean this code:
Y = fft(y,251);
Pyy = Y.*conj(Y)/251;
f = 1000/251*(0:127);
plot(f,Pyy(1:128))
title('Power spectral density')
xlabel('Frequency (Hz)')
can you please explain to me what is 251 represends cause I don't understand this example
Star Strider
Star Strider 2016년 4월 9일
The ‘251’ is the number of points of ‘y’ used to calculate the fft. If the length of ‘y’ is shorter than that, then it is zero-padded to that lenght, if longer, it is truncated to a length of ‘251’. That refers to the length of a vector or the row-size of a matrix.
The rest of the code squares the elements of ‘Y’, creating the power spectral density. Only the first 128 samples are plotted because this is a one-sided fft (although I would have chosen 126 instead of 128, since that is half the length of ‘Y’+1).
Vasilis Papadopoulos
Vasilis Papadopoulos 2016년 4월 10일
thank you Sir
Star Strider
Star Strider 2016년 4월 10일
My pleasure.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터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!

Translated by