フィルターのクリア

first order differential equation

4 ビュー (過去 30 日間)
ikhlas
ikhlas 2022 年 12 月 17 日
回答済み: Star Strider 2022 年 12 月 17 日
how can we solve this differential equation numerically in matlab
2xy(dy/dx)+(1+x)y^2=e^x ?

回答 (1 件)

Star Strider
Star Strider 2022 年 12 月 17 日
One approach —
syms y(x) x Y
Dy = diff(y);
Eqn = 2*x*y*Dy+(1+x)*y^2 == exp(x);
[VF,Subs] = odeToVectorField(Eqn)
VF = 
Subs = 
odefcn = matlabFunction(VF, 'Vars',{x,Y})
odefcn = function_handle with value:
@(x,Y)[((-exp(x)+Y(1).^2+x.*Y(1).^2).*(-1.0./2.0))./(x.*Y(1))]
Then, use ‘odefcn’ in the differential equation solver (perhaps ode45) of your choice.
.

カテゴリ

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