フィルターのクリア

How can I plot the difference of the solution of two differential equations vs time?

2 ビュー (過去 30 日間)
Joely Depoy
Joely Depoy 2019 年 10 月 2 日
回答済み: Yogesh Khurana 2019 年 10 月 16 日
syms x(t)
ode = diff(x,t) == (((1/x))-1)*(1/sqrt(x));
cond = x(0) == 2;
xSol(t) = dsolve(ode,cond)
syms y(t)
ode = diff(y,t) == (2*((1/y))-1)*(1/sqrt(y));
cond = y(1) == 2;
ySol(t) = dsolve(ode,cond)
t= 0:0.1:10;
fplot(xSol(t)-ySol(t),t)

回答 (1 件)

Yogesh Khurana
Yogesh Khurana 2019 年 10 月 16 日
Hi,
Difference in the solutions of two differential equations can be obtained by using diff command in MATLAB. Afterwards you can use plot function and provide the arguments properly.
In case of some missing data in some of the timestamps in any of the differential equation’s solution, you can use interpolation.
Documentation link:
You can find some more details in the solution posted in the below link:
Hope this helps!

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by