Azzera filtri
Azzera filtri

Finding the frequency and the phase shift of a Sin signal

15 visualizzazioni (ultimi 30 giorni)
Hallo,
i have this sin function with damping discribed with the equation in the photo, the plot under it is my signal.
how can i claculate F0 and phi0 of my Signal?

Risposta accettata

Star Strider
Star Strider il 16 Mag 2021
One option is described in Curve fitting to a sinusoidal function and a version that could be more appropriate to your problem is How to filter noise from time-frequency data and find natural frequency of a cantilever?
The one change I would make to that code is to replace the ‘zci’ funciton with:
zci = @(x) find(diff(sign(x)));
since it is more robust.
Those routines will calculate the frequency, phase, and other parameters.
Another option of course is to use the fft function.
  4 Commenti
Ahmad Badran
Ahmad Badran il 17 Mag 2021
Thank you very much i set the number number of peaks to one and i think i got the wanted results
[pks, locs] = findpeaks(abs(FTs(Iv)),"NPeaks",1); % Peaks & Indices (May require'MinPeakHeight' Or 'MinPeakProminence' For Best Results)
Phase = angle(FTs(locs)); % Phase Angle At Peak
Phase0 = rad2deg(Phase)
PeakFreq = Fv(locs)
hope it's right
thank you again

Accedi per commentare.

Più risposte (0)

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by