How can inter burst intervals (IBIs) be extracted from the EEG signal?

3 views (last 30 days)
They have also been called bursts of nested activity (BNOs) in this article: http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0031543
Can someone please explain me how to incorporate this in NBT? :)

Answers (1)

Star Strider
Star Strider on 22 Jun 2018
Figure 1 appears to use the Signal Processing Toolbox envelope (link) function to isolate the bursts. I would then use findpeaks (link) to define the peaks of the envelope output. That data will let you define the IBI data.
However, the authors apparently filter their data to get the envelopes. If you want to follow their lead in that respect, and you have R2018a or later, use the bandpass (link) function to design the filter and filter your signal. (Note that if you use the ‘d’ digital filter output to filter your signals, use filtfilt to filter them, not filter as in the documentation. That only works with linear-phase FIR filters, and bandpass designs an elliptical IIR filter by default.) There are other ways to design filters if you do not have R2018a or later. They simply require more effort.
That is the approach I would use.

Categories

Find more on Digital and Analog Filters 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!