How can I convert deformation data into FRF using FFT?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
도현 김
il 27 Ott 2021
Risposto: Bjorn Gustavsson
il 27 Ott 2021
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 Commenti
Risposta accettata
Bjorn Gustavsson
il 27 Ott 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
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Fourier Analysis and Filtering in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!