2nd order ode where the user inputs the ode
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
hello everyone,
I'm trying to write a code that solves 2nd order odes, and the user inputs the ode
i tried this but it doesn't work:
syms x y
a=input('introduce your ode')%using diff and ==
syms y(x)
ysol=dsolve(a,y(0)==1)
1 Kommentar
Geoff Hayes
am 21 Nov. 2018
chakib - please clarify what you mean by it doesn't work (for those of us who can't run the above code since we don't have the Symbolic Toolbox). If you are observing an error message, then please copy and paste the full error message to this question.
Antworten (1)
madhan ravi
am 21 Nov. 2018
Bearbeitet: madhan ravi
am 21 Nov. 2018
Try the below it works:
syms y(x)
a=input('introduce your ode : ')
ysol=dsolve(a,y(0)==1)
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!