フィルターのクリア

Why wICA method use multi channel EEG signal over single channel EEG signal ? Which channel is subtracted from {data1 = [d1;d2;d3;d4;d5;d6];} and why??

1 回表示 (過去 30 日間)
eeg1 = data{1,1}.X;
eeg2 = eeg1.';
d1 = eeg2(1,1:10000);
d2 = eeg2(2,1:10000);
d3 = eeg2(3,1:10000);
d4 = eeg2(4,1:10000);
d5 = eeg2(5,1:10000);
d6 = eeg2(6,1:10000);
data1 = [d1;d2;d3;d4;d5;d6];
%% Apply WICA
[wIC, A]= wICA(data1,[],8,0);%[wIC,A] = wICA(data,[],5,1);
artifact = A*wIC;
clean = data1 - artifact; %In here ,which channel is subtracted from {data1 = [d1;d2;d3;d4;d5;d6];} and why??

回答 (0 件)

カテゴリ

Help Center および File ExchangeEEG/MEG/ECoG についてさらに検索

タグ

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by