How to split EEG signal into different chunks?
Mostrar comentarios más antiguos
Total Number of samples 9600
want to split into four equal parts
Respuesta aceptada
Más respuestas (1)
Wayne King
el 31 de Jul. de 2013
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.
Categorías
Más información sobre Hilbert and Walsh-Hadamard Transforms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!