How to find specific frequency in signal

2 ビュー (過去 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 Center および File ExchangeSmoothing and Denoising についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by