can you help me
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
Please help me to solve y''''+y'''-y''-y'=2x+2sinx and then to compare in Simulink environment
3 Kommentare
@Arman, Please follow the example in the 'dsolve' or 'ode45' documentation page to create the code for the 4th-order system. Afterwards, you can copy and paste the code here by clicking on the indentation icon
. We will review it for any errors.
%% Paste your code here
function dydt = fourthOrderSys(t, y)
dydt(1) = ...;
dydt(2) = ...;
dydt(3) = ...;
dydt(4) = ...;
end
Arman
am 13 Mai 2024
Antworten (0)
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!