Common average refrencing (CAR) application on EEG signals.
18 ビュー (過去 30 日間)
古いコメントを表示
Maanvi Bhatnagar
2017 年 11 月 28 日
回答済み: zaineb alhakeem
2019 年 5 月 7 日
I have a matrix of dimensions 450000*60 of a one class eeg signal. I have to apply Common average referencing (CAR) on it. Matrix dimension 45000*60 where 1:60 is the no. electrodes from 1 to 60 and 45000 is the total number of samples. Each trial consists of 1000 samples. This is to be calculated trial wise Can anybody help me with the code?
0 件のコメント
採用された回答
Debanjan Botthakur
2018 年 3 月 16 日
編集済み: Debanjan Botthakur
2018 年 3 月 16 日
You can try
for i=1:60 signal2(:,i)=signal1(:,i)-mean(signal1,2); end
1 件のコメント
vinay kulkarni
2019 年 2 月 2 日
hello i just want to ask that why do you take 2 there in mean(signal1,2) ?
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で EEG/MEG/ECoG についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!