Solve the differential equation
Ältere Kommentare anzeigen
y''-5*y'+6y=e^(-x)
Antworten (1)
Ameer Hamza
am 18 Jun. 2020
Bearbeitet: Ameer Hamza
am 18 Jun. 2020
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
Kategorien
Mehr zu Ordinary Differential Equations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!