solving a differential equation coupling together in matrix and vector form with ode45
Afficher commentaires plus anciens
I have two problem:
1) I used two functions for solving a set of equation not in matrix or vector form but like
[x(2);3+x(4)+x(3);x(4);....................]
then [t,x] = ode45(@(t,x) lili(t,x),tspan,x0);
now I need the vector of dx=[x(2) x(4) x(6)]
but it doesnt return this vector.
2) i want to solve equation like this D2y=d2x+cross(m,n)
its clear cross product is in vector form
how could i solve matrix form of differential equation?
especially initial values is a vector
1 commentaire
Torsten
le 6 Déc 2018
1) Unclear what you have done and what your problem is. Please provide the code you are using and possibly the error message you get.
2) ODE45 expects the differential equations to be given in vector format. So convert your equations from matrix form to vector form.
Best wishes
Torsten.
Réponse acceptée
Plus de réponses (1)
roya afshar
le 6 Déc 2018
0 votes
3 commentaires
roya afshar
le 7 Déc 2018
roya afshar
le 7 Déc 2018
Modifié(e) : roya afshar
le 7 Déc 2018
Catégories
En savoir plus sur Ordinary Differential Equations 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!