Borrar filtros
Borrar filtros

How to calculate the frequencies interval?

4 visualizaciones (últimos 30 días)
sh xx
sh xx el 21 de Dic. de 2022
Respondida: Cameron el 23 de Dic. de 2022
As showed below, how to calculate the frequencies interval in the red box?

Respuestas (1)

Cameron
Cameron el 23 de Dic. de 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

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by