How to write equations in MATLAB
Afficher commentaires plus anciens
Afternoon
I have been trying to write my equations in matlab, but I'm struggling on how to format them on matlab as a code. The equations are:
and

and

I'm writing a program and this is the only part I'm currently stuck. I'll be honoured if anyone helped me. Thank you very much.
Réponses (1)
Ameer Hamza
le 6 Mai 2020
Modifié(e) : Ameer Hamza
le 6 Mai 2020
You can use the symbolic toolbox to find out the derivative of 'x'
syms t w c r
x = r*cos(w*t) + sqrt(c^2-r^2*sin(w*t)^2)
dxdt = diff(x,t)
dx2dt = diff(dxdt,t)
Run it in Live script to see the equations rendered in latex format.
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!