Multi formula ode implementation
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How do i implement an ODE defined by more than one formula.
0 Commenti
Risposta accettata
Ameer Hamza
il 5 Ott 2020
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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Ordinary Differential Equations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!