Multi formula ode implementation
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ajai Singh
am 5 Okt. 2020
Beantwortet: Ameer Hamza
am 5 Okt. 2020
How do i implement an ODE defined by more than one formula.
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 5 Okt. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Ordinary Differential Equations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!