Borrar filtros
Borrar filtros

HD-sEMG data segmentation

1 visualización (últimos 30 días)
Alyaa Ghazi
Alyaa Ghazi el 19 de Mzo. de 2024
Comentada: Star Strider el 20 de Mzo. de 2024
Hi every one,
I have a data of ( 400000*9) matrix, and I need to segment it into: first: nonoverlaping with window size is 32 ms, and second with overlaping 50% of the window size ,the sampling frequency of the original data is 2048

Respuesta aceptada

Star Strider
Star Strider el 19 de Mzo. de 2024
Use the Signal Processing Toolbox buffer function on each column individually.
The number of samples to use as the second argument is the time multiplied by the sampling frequency.
Here, that is —
Fs = 2048;
segment = 32E-3;
samples = round(Fs * segment)
samples = 66
Other options to produce an integer for ‘samples’ are floor or ceil. The buffer funciton can also accommodate the overlap requirement.
.
  2 comentarios
Alyaa Ghazi
Alyaa Ghazi el 19 de Mzo. de 2024
thank u
Star Strider
Star Strider el 20 de Mzo. de 2024
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by