how to calculate the frequency of a certain signal ?

1 次查看(过去 30 天)
hello everybody,
how i can calculate the frequency range of a given signal? for example i got that signal in the attached .mat file here, how to calculate the frequency range of it in order to know if this is delta alpha beta or gamma or whatever range?
Thank you in advance.
  2 个评论
Star Strider
Star Strider 2016-12-15
The file contains only the (1x510) ‘Signal11’ vector. Without the matching time vector or the sampling frequency, it is not possible to determine the frequency range anything in that signal.
Walter Roberson
Walter Roberson 2016-12-15
Right, not unless you know the sampling frequency or sampling interval.

请先登录,再进行评论。

回答(1 个)

KSSV
KSSV 2016-12-15
You have to use fft to calculate the frequency....Read about the function fft.
  3 个评论
KSSV
KSSV 2016-12-15
load signal.mat ;
s = Signal11 ;
% get 4-4 Hz
f_47 = s(s>=4 & s<=7) ;
Jack
Jack 2016-12-15
thank you for your answer Mr.KSSV, but i do not need to get this range. what i asked is that the file attached here is represent a signal that i do not know what is it, so how to calculate this signal to know its range ?? thank in advance.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by