Solve the differential equation

Antworten (1)

Ameer Hamza
Ameer Hamza am 18 Jun. 2020
Bearbeitet: Ameer Hamza am 18 Jun. 2020

1 Stimme

xspan = [0 5];
ic = [1; 0]; % initial condition
[t, y_sol] = ode45(@odeFun, xspan, ic);
plot(t, y_sol);
legend({'y', 'dot\_y'});
function dydx = odeFun(x, y)
dydx = [y(2);
5*y(2)-6*y(1)+exp(-x)];
end

Gefragt:

am 18 Jun. 2020

Bearbeitet:

am 18 Jun. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by