Effacer les filtres
Effacer les filtres

I want to spit EEG signals in four equal parts?

1 vue (au cours des 30 derniers jours)
Biomedical
Biomedical le 19 Août 2013
The matrix size is 65X1600
Kindly help me out to split it into 65x400 65x400 65x400 65x400
Thanks

Réponses (2)

Jan
Jan le 19 Août 2013
Modifié(e) : Jan le 19 Août 2013
If your EEG data is in the (65 x 1600) matrix named signal do:
p1 = signal(:,1:400);
p2 = signal(:,401:800);
p3 = signal(:,801:1200);
p4 = signal(:,1201:1600);

Image Analyst
Image Analyst le 19 Août 2013
Don't you remember when you asked this before at http://www.mathworks.com/matlabcentral/answers/83633#answer_93220

Catégories

En savoir plus sur EEG/MEG/ECoG dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by