how to calculate the frequency of a certain signal ?

조회 수: 1 (최근 30일)
Jack
Jack 2016년 12월 15일
댓글: Walter Roberson 2016년 12월 15일
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