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 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
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 commentaires
Réponses (1)
  KSSV
      
      
 le 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 commentaires
Voir également
Catégories
				En savoir plus sur Surfaces, Volumes, and Polygons dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

