Assume that the athlete can bend at a range of angles of 10° to 80° from vertical. Also assume that a, b, and c stay constant with varying angles of theta. In MATLAB, plot the magnitude of the forces FM and FJ relative to angle of bending for a. An a
2 views (last 30 days)
Show older comments
Assume that the athlete can bend at a range of angles of 10° to 80° from vertical. Also assume that a, b, and c stay constant with varying angles of theta. In MATLAB, plot the magnitude of the forces FM and FJ relative to angle of bending for a. An adult whose height is 180cm and weight is 100kg b. A child whose height is 120cm and weight is 30kg
I already have the equations for Fm and Fj, but I don't know what to do with the varying angle.
0 Comments
Answers (1)
KSSV
on 18 Sep 2018
N = 100 ; % can be varied
th = linspace(10,80,N) ;
% initilize what you want here
for i = 1:N
thi = th(i) ;
% you formula
end
0 Comments
See Also
Categories
Find more on Surfaces, Volumes, and Polygons in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!