Info
此问题已关闭。 请重新打开它进行编辑或回答。
can you help me
1 次查看(过去 30 天)
显示 更早的评论
Please help me to solve y''''+y'''-y''-y'=2x+2sinx and then to compare in Simulink environment
3 个评论
Sam Chak
2024-5-13
编辑:Sam Chak
2024-5-13
@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
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!