Effacer les filtres
Effacer les filtres

How to calculate the frequencies interval?

3 vues (au cours des 30 derniers jours)
sh xx
sh xx le 21 Déc 2022
Réponse apportée : Cameron le 23 Déc 2022
As showed below, how to calculate the frequencies interval in the red box?

Réponses (1)

Cameron
Cameron le 23 Déc 2022
I'm a little confused what you're asking, but if you have access to the x and y data then you should be able to use the findpeaks function. For example
x = 0:0.01:10; %simulate some time vector in seconds
y = sin(2.22*x); %simulate some y data
[~,loc] = findpeaks(y); %find peaks. You can check the documentation for additional arguements
plot(x,y,'-',x(loc),y(loc),'o') %plot the data just to see what you're looking at
f = 1/(x(loc(2)) - x(loc(1))); %frequency in Hz

Tags

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by