How can I convert deformation data into FRF using FFT?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have deformation data. (unit: mm) (Time domain)
Then, I want to obtain FRF data using FFT.
As follow.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/780488/image.png)
How can I convert deformation data into FRF using FFT?
댓글 수: 0
채택된 답변
Bjorn Gustavsson
2021년 10월 27일
Simply use fft? That will give you the complex discrete Fourier-transform. If you do:
fS = fft(S); % fS will have "DC"-component in the first element
semilogy(2*abs(fS(1:end/2)))
You'll have to determine the frequencies and whether you want abs(fS) or abs(fS).^2.
HTH
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
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!