필터 지우기
필터 지우기

How to find specific frequency in signal

조회 수: 1 (최근 30일)
Ali Asghar
Ali Asghar 2019년 8월 11일
댓글: Star Strider 2019년 8월 16일
Dear
I have signal 30000x2 size.
i want to find out the specific reqency in signal like 50hz noise and band of 60-2000hz freq.
How can i do it?
untitled.jpg

채택된 답변

Star Strider
Star Strider 2019년 8월 11일
If you have R2018a or later and the Signal Processing Toolbox, use the bandpass function to filter your signal.
  댓글 수: 8
Ali Asghar
Ali Asghar 2019년 8월 16일
to clean 50hz from the signal, can i use
bandstop(signal,[49 50],Fs); ??
Star Strider
Star Strider 2019년 8월 16일
I would use:
[signal_filtered, df] = bandstop(signal, [49 51], Fs);
You can then also use ‘df’ with filtfilt to filter other signals.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Filter Analysis에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by