Hello, I am trying to use a bandpass IIR filter to filter by EEG data which is collected at a sampling rate of 1000. I am using the following code to do it, bpfilter = designfilt('bandpassiir', 'StopbandFrequency1',5,'PassbandFrequency1', 8, 'PassbandFrequency2', 35,'StopbandFrequency2', 40, 'StopbandAttenuation1', 60, 'PassbandRipple', 1, 'StopbandAttenuation2', 60, 'SampleRate', 1000);
But after filtering and plotting the spectrum I am getting a straight line parallel to the x-axis and zero amplitude. Whereas when I used FIR, I obtained a good spectrum. It is just that since my amplitudes matter hence I don't want to use an FIR filter due to its undulations in bandpass frequencies.

 採用された回答

Star Strider
Star Strider 2018 年 8 月 4 日

0 投票

I would normally suggest using the filtfilt function, however the filters returned by designfilt appear to be more appropriate to the filter function (as the documentation recommends). That appeared to work well when I used it with a signal I synthesized to test it.
Try this:
FilteredEKG = filter(bpfilter, EKG);
with appropriate changes to use your variables.

2 件のコメント

Ankit Roy
Ankit Roy 2018 年 8 月 7 日
Thank You Star Strider for the answer. Actually it turned out that I was doing something silly elsewhere. Otherwise it is fine.
Star Strider
Star Strider 2018 年 8 月 7 日
As always, my pleasure.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeEEG/MEG/ECoG についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by