Calculating the frequency of data

16 次查看(过去 30 天)
I have a data (length-time) that looks like this. I am trying to calculate the frequncy of this data. Is there any way that I can calcukate this frequncy based on the peak to peak position?

采纳的回答

Benjamin Thompson
Benjamin Thompson 2022-2-10
If you can do it manually, I like ginput. You use the mouse to select the points of interest and ginput returns the x and y values of those points from the plot.
>> t = 1:0.01:5;
>> x = sin(2*pi*4*t);
>> figure, plot(t, x);
>> [a, b] = ginput(2)
a =
1.8249
2.0645
b =
0.9913
0.9854
>> 1/(a(2)-a(1))
ans =
4.1731
  4 个评论
Sam J
Sam J 2022-2-10
I have a lot of data like this to analyze. I am looking for a auomated way. Is there any to do it automatically?
Benjamin Thompson
Benjamin Thompson 2022-2-10
Use the fast fourier transform or fft function in MATLAB to map an input signal to the frequency spectrum. The signal processing toolbox also has some helpful things like findpeaks and pspectrum. You can also type "lookfor" followed by a key word to find functions that do things you want in MATLAB.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Parametric Spectral Estimation 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by