Second Order ODE solve
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Patiphol Jiravanichkul
am 12 Okt. 2021
Beantwortet: Ashutosh Singh Baghel
am 22 Okt. 2021
Solve the following equation. Your answer must be real-valued functions and must be simplified.
y'' + 4y = f(x), f(x) = sin(2x) when pi/4 < x < 3*pi/4 and f(x) = 0 when otherwise
Given y(pi/4) = 3, y(pi/2) = 0.
0 Kommentare
Antworten (1)
Ashutosh Singh Baghel
am 22 Okt. 2021
Hi Patiphol,
I believe you wish to plot this second order ode dependent on x. Please find a reference example
fx = linspace(0, 10, 50);
f = sin(2*fx);
xspan = [pi*0.25 pi*0.5];
y_0 = [3 0];
[x,y] = ode45(@(x, y) myode1(x, y, fx, f), xspan, y_0);
plot(x, y(:,1), '-r ', x, y(:,2), '--g');
legend('y(1)', 'y(2)');
xlabel('x');
ylabel('y Solution');
function dydx = myode1(x, y, fx, f)
f = interp1(fx, f, x);
dydx = [y(2); f - 4*y(1)];
end
Please refer to the following MATLAB Documentation page on the 'ode45' function and relevant information on the 'Differential Equation'.
0 Kommentare
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!