ode45 Initial conditions are not at the same point

Hello everybody, I'm using ode45 to solve some easy differential equations.
Here are the equations that I have:
For now, I have the initial conditions:
As you can see, the initial conditions are in not the common case, which may look like:x(4)=a;y(4)=b;
The value of x and y gets from different point.
Any suggestion on the set of initial values for ode45?
Thank you in advance!
Meredith

 採用された回答

madhan ravi
madhan ravi 2018 年 11 月 24 日

2 投票

5 件のコメント

Yijia Liu
Yijia Liu 2018 年 11 月 25 日
bvp4c seems to solve the multi-boundary problem of the same variable, that the initial conditions all get from y. If the two given initial conditions one is from x, another is from y, can I use bvp4c to sovle it?
Thanks for your answer!
Torsten
Torsten 2018 年 11 月 26 日
編集済み: Torsten 2018 年 11 月 26 日
The ODE solvers work with one arrays for the solution variables (e.g. z), not with multiple single expressions (x,y). So for both ODE45 and BVP4C you will have to rename your variables as
x=z(1), y=z(2)
e.g.
And BVP4C is the adequate tool to solve your exercise.
madhan ravi
madhan ravi 2018 年 11 月 26 日
Thank you Torsten :)
Yijia Liu
Yijia Liu 2018 年 11 月 28 日
Thanks for your help!
madhan ravi
madhan ravi 2018 年 11 月 28 日
Anytime :) if you find the answer helpful and it answered your query make sure to accept the answer

サインインしてコメントする。

その他の回答 (1 件)

Pasindu Ranasinghe
Pasindu Ranasinghe 2021 年 7 月 22 日

0 投票

Example Code
Use ode45() to find the approximate values of the solution at t in the range of 1 to 3
function ydot = eqns(t,y)
ydot=(t-exp(-t))/(y+exp(y));
end
###################################
%%Code
[t1,y1]=ode45(@eqns,[1.5 1], 0.5);
hold on;
[t2,y2]=ode45(@eqns,[1.5 3], 0.5);
hold off
t=[t1;t2];
y=[y1;y2];
plot(t,y,'-o')
HOPE YOU FIND THIS USEFULL

カテゴリ

質問済み:

2018 年 11 月 24 日

回答済み:

2021 年 7 月 22 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by