calculating velocity and acceleration from force data
이전 댓글 표시
bw means bodyweight
g=-9.81
I have a force and I have tried to take the bw away from the force and then find velocity and acceleration is this right?
% Calculation of Velocity and Acceleration
%force to acceleration by f=ma
%acceleration=force/mass
%acceleration to velocity = cumtrapz
time = (0:fps:length(fz)-fps);
bw = nanmean(abs(fz(1:to(i,1):40)));
mass = bw/g;
IFz= fz - bw;
I = trapz(time(to(i,1):td(i,1)), IFz(to(i,1):td(i,1)));
a = I/mass;
%velocity
v = I/(bw);
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Chassis Systems에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!