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에서 Hilbert and Walsh-Hadamard Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!