How to solve two 2nd order differential equations using ode's
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ebraheem Menda
el 21 de Feb. de 2018
Comentada: Ebraheem Menda
el 22 de Feb. de 2018
my system is as follows. x"+ x'+ x + y'=0; y"+ y'+ y + x'=0; Thanks in advance for the help.
0 comentarios
Respuesta aceptada
Birdman
el 21 de Feb. de 2018
Here is an approach, with symbolic way:
syms x1(t) x2(t)
eq1=diff(x1,2)+diff(x1,1)+x1+diff(x2,1)==0;
eq2=diff(x2,2)+diff(x2,1)+x2+diff(x1,1)==0;
solx=dsolve([eq1,eq2]);
x1(t)=solx.x1
x2(t)=solx.x2
4 comentarios
Birdman
el 22 de Feb. de 2018
I do not know how to use ode45. Maybe you should open a new question in forum.
Más respuestas (0)
Ver también
Categorías
Más información sobre Ordinary Differential Equations 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!