How do we pass our signal through the filter designed by us using FDA tool?

10 views (last 30 days)
I have designed a band pass filter using FDA tool and have generated a M-file with that. In my program, i have loaded my EEG signal. But i am unable to send this signal through the filter designed. Please help me send the EEG signal through the filter designed. I don't know how to call the filter function designed with fdatool.

Answers (1)

Honglei Chen
Honglei Chen on 17 Oct 2012
Say you generated the MATLAB file named myfilter.m. Then you can do the following to filter your signal x
Hd = myfilter;
y = filter(Hd,x);

Categories

Find more on EEG/MEG/ECoG in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!