What are the possible ways to solve the following set of equations?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
My equations are as follows:
Algebraic Equations
b1=((b1+(1-exp(-b3))))
b2=b1-y(1)
b3=b1+b2+y(2)
Ordinary Differential Equations
dy(1)=-b1*y(1);
dy(2)=b3*y(1)+b2*y(2);
dy(3)=sqrt(b1)+y(1)+y(3);
Initial Values
b1=1,
b2=0,
b3=3
y1=1,
y2=3,
y3=0
I do not wish to substitute the values of any equation into some other equation. That is, I do not want to simplify it. How do I solve this? I have tried various techniques but I just cannot pass initial values for those algebraic equations. I want the code to calculate new b1 b2 b3 for every time step corresponding to the y value.
Thanks!
2 commentaires
Réponses (1)
Voir également
Catégories
En savoir plus sur Ordinary Differential Equations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!