Help me with code to solve for loop to solve ODE

조회 수: 2 (최근 30일)
Le Duc Long
Le Duc Long 2020년 6월 23일
댓글: Le Duc Long 2020년 6월 25일
Hello everybody,
I have a problem with my code. I want to write a code to solve ODE (image). I am trying it with function ode45, I can only write code when value s=const. But I do not how to write a code for s(t) in this case. Can you show me how to do in this case. Thanks so much! Best regards!

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 6월 23일
편집: Ameer Hamza 2020년 6월 23일
Try this code
tspan = [0 500];
ic = [1; 0; 0; 0; 0];
[t, p] = ode45(@odeFun, tspan, ic);
plot(t, p)
legend({'p', 'p\_dot1', 'p\_dot2', 'p\_dot3', 'p\_dot4'})
function dpdt = odeFun(t, p)
A = [-1 0 0 0 0;
1 -1 0 0 0;
0 1 -1 0 0;
0 0 1 -1 0;
0 0 0 1 -1];
B = [0 1 0 0 0;
0 -1 1 0 0;
0 0 -1 1 0;
0 0 0 -1 1;
0 0 0 0 -1];
lambda = 0.2;
T = 100;
g = T/2;
s0 = 0.5;
if (t-floor(t/T)*T)<g
s = s0;
else
s = 0;
end
dpdt = (lambda*A + s*B)*p;
end
  댓글 수: 12
Ameer Hamza
Ameer Hamza 2020년 6월 25일
Try using https://www.mathworks.com/help/stats/poissrnd.html to generate random number using poisson distribution.
Le Duc Long
Le Duc Long 2020년 6월 25일
Thanks you very much Ameer Hamza.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by