How would to find the solution and closed form expression.
Mostra commenti meno recenti
i have the equation xdd+2xd+2x=0, i figured out how to find the solutions for the equation but am not sure how to go from there to the closed form expression.
syms x xd xdd r t a eqm
x = a*exp(r*t)
xd = diff(x)
xdd = diff(xd)
eqm = xdd + 2*xd + 2*x
solve(eqm,r)
1 Commento
Walter Roberson
il 6 Mar 2019
Something like
subs(x, r, solve(eqm,r))
Risposte (0)
Categorie
Scopri di più su Multibody Modeling in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!