Borrar filtros
Borrar filtros

How to detect heel strike and toe off from left/right vertical force data?

16 visualizaciones (últimos 30 días)
Hello:
I'm stacked in identifying HS and TO of my data. In the attachment data, you will find the right and left force. Also, there's the left and right contact. In the left and right contact columns 1 means contact and 0 means no contact. When the value changes from 0 to 1 = heel strike, and when the data is changing from 1 to 0 = toe-off. How can I identify when data is changing?
Thanks very much for the help!!!
readtable("3kmFES_001a.xlsx")

Respuesta aceptada

William Rose
William Rose el 7 de Sept. de 2022
@Mario, yuou might want to check out this article on this topic. (I am one of the authors.)
Comparison of methods for kinematic identification of footstrike and toe-off during overground and treadmill running
We compared various methods for measuring heel strike and toe-off in the gaitlab, for runners on treadmill and not.
  7 comentarios
Mario
Mario el 9 de Sept. de 2022
@William RoseThanks for the plot answer!! It's great!! have a nice weekend!
William Rose
William Rose el 9 de Sept. de 2022
@Mario, you're welcome.
You could consolidate the two plot() commands into one, and remove "hold on":
plot(t,Fleft,'-b',ths,zeros(1,nhs),'vr',tto,zeros(1,nto),'^g');
grid on; xlabel('Time (ms)'); ylabel('F_z (N)');
title('Left G.R.F.')
legend('F_z','HS','TO')
Good luck with your research.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Interpolation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by