How can I convert deformation data into FRF using FFT?

10 vues (au cours des 30 derniers jours)
도현 김
도현 김 le 27 Oct 2021
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?

Réponse acceptée

Bjorn Gustavsson
Bjorn Gustavsson le 27 Oct 2021
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

Plus de réponses (0)

Catégories

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

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by