フィルターのクリア

break up filtered EMG data into epochs

9 ビュー (過去 30 日間)
Group 1
Group 1 2020 年 10 月 23 日
コメント済み: Ameer Hamza 2020 年 10 月 23 日
hello,
I have a filtered EMG signal that i have to break up into 1.5s epochs so i could apply a periodogram function. But i am not sure how to break it up with a simple command.

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 10 月 23 日
Try something like this
t = linspace(0, 10, 1000);
eeg_signal = rand(size(t)); % eeg-signal
grps = ceil((t+eps).'/1.5);
eeg_split = splitapply(@(x,y) {[x, y]}, t(:), eeg_signal(:), grps);
  2 件のコメント
Group 1
Group 1 2020 年 10 月 23 日
How can i plot it?
Ameer Hamza
Ameer Hamza 2020 年 10 月 23 日
See plot() function.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDigital Filter Analysis についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by