Multi formula ode implementation
1 回表示 (過去 30 日間)
古いコメントを表示
How do i implement an ODE defined by more than one formula.
0 件のコメント
採用された回答
Ameer Hamza
2020 年 10 月 5 日
You can define it in the ODE function
IC = 0; % initial conditions
tspan = [0 10]; % initial conditions
ode45(@odefun, tspan, IC)
function dxdt = odefun(t, x)
if x < 0
dxdt = -x;
else
dxdt = x.^2;
end
end
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!