How can I convert deformation data into FRF using FFT?

조회 수: 1 (최근 30일)
도현 김
도현 김 2021년 10월 27일
답변: Bjorn Gustavsson 2021년 10월 27일
I have deformation data. (unit: mm) (Time domain)
Then, I want to obtain FRF data using FFT.
As follow.
How can I convert deformation data into FRF using FFT?

채택된 답변

Bjorn Gustavsson
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개)

카테고리

Help CenterFile Exchange에서 Transforms에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by