Finding the frequency and the phase shift of a Sin signal

16 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

Star Strider
Star Strider el 16 de Mayo de 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 comentarios
Ahmad Badran
Ahmad Badran el 17 de Mayo de 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
Star Strider
Star Strider el 17 de Mayo de 2021
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Spectral Measurements en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by