Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

can you help me

조회 수: 3 (최근 30일)
Arman
Arman 2024년 5월 13일
마감: John D'Errico 2024년 5월 13일
Please help me to solve y''''+y'''-y''-y'=2x+2sinx and then to compare in Simulink environment
  댓글 수: 3
Sam Chak
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
Arman
Arman 2024년 5월 13일
In my course work answer isy= c1+c2e^-x+c3x^e-x+c4^ex+2x-x^2-0.5(sin x +cos x)

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by