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

조회 수: 10 (최근 30일)
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")

채택된 답변

William Rose
William Rose 2022년 9월 7일
@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
Mario
Mario 2022년 9월 9일
@William RoseThanks for the plot answer!! It's great!! have a nice weekend!
William Rose
William Rose 2022년 9월 9일
@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.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by