I want to spit EEG signals in four equal parts?

The matrix size is 65X1600
Kindly help me out to split it into 65x400 65x400 65x400 65x400
Thanks

답변 (2개)

Jan
Jan 2013년 8월 19일
편집: Jan 2013년 8월 19일

0 개 추천

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);

카테고리

도움말 센터File Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기

질문:

2013년 8월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by