How to split EEG signal into different chunks?
显示 更早的评论
Total Number of samples 9600
want to split into four equal parts
采纳的回答
更多回答(1 个)
Wayne King
2013-7-31
x = randn(9600,1);
len = 9600/4;
x1 = reshape(x,len,4);
x1 is a matrix with 4 columns, each one is 9600/4 samples in length.
类别
在 帮助中心 和 File Exchange 中查找有关 EEG/MEG/ECoG 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!