How to do manual operation of cross multiplication or substitution?
    4 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
If
syms A B x
y = A*x^2 + B*x;
dy = diff(y)
d2y = diff(dy)
then how to get  where d2y is the second derivation; using subs or any other command in MATLAB
where d2y is the second derivation; using subs or any other command in MATLAB
 where d2y is the second derivation; using subs or any other command in MATLAB
where d2y is the second derivation; using subs or any other command in MATLAB0 commentaires
Réponses (1)
  Chunru
      
      
 le 12 Déc 2021
        Is this what you want?  
syms A B x z
y = A*x^2 + B*x;
dy = diff(y)
d2y = diff(dy)
z = d2y/x^2
4 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




