How to find the time and partial derivative?
    8 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    RoBoTBoY
 el 22 de Dic. de 2020
  
    
    
    
    
    Comentada: RoBoTBoY
 el 22 de Dic. de 2020
            Hello!
I have this:

How to represent the above in matlab in order to find the partial derivative w.r.t. q1_dot, that is the below

And after that i want to find the time derivative from the above.

Thanks in advance
8 comentarios
  Walter Roberson
      
      
 el 22 de Dic. de 2020
				syms q1(t) q2(t) l1 l2 m I
K = 1/2*m*diff(q1(t),t)^2+1/2*(m*l2^2+I)*diff(q2(t),t)^2-m*diff(q1(t),t)*l2*sin(q2)*diff(q2(t),t)
syms Q1_dot
Ks = subs(K(t), diff(q1), Q1_dot)
dK_q1_dot = diff(Ks, Q1_dot)
dK_q1_dot_dt = diff(dK_q1_dot, t)
Respuesta aceptada
  Alan Stevens
      
      
 el 22 de Dic. de 2020
        You don't really need the power of MATLAB here; elementary calculus will do:

Más respuestas (0)
Ver también
Categorías
				Más información sobre Calculus en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




