i have error in this code while using ode45
이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
이전 댓글 표시
%constants
A=2.6e-3;
B=90;
C=0.025;
D=5.0E-3;
E=0.3;
F=0.0041;
G=0.27;
H=83.7;
%Parameter Changes
A1=2.6e-2;
B1=80;
C1=0.025;
D1=6.0E-3;
E1=1;
F1=0.008;
G1=0.27;
H1=83.7;
%hold on
f=@(t,y) [-y(2) y(1) -A(y(1)-B); C*D*(y(3)-E) -C*y(2); -G*y(3) +F*max(0,y(1)-H)];
[t,xa]=ode45(f, [0 180], [250 :0 350]);
Index exceeds the number of array elements. Index must not exceed 1.
Error in solution (line 26)
f=@(t,y) [-y(2) y(1) -A(y(1)-B); C*D*(y(3)-E) -C*y(2); -G*y(3) +F*max(0,y(1)-H)];
Error in odearguments (line 92)
f0 = ode(t0,y0,args{:}); % ODE15I sets args{1} to yp0.
Error in ode45 (line 107)
odearguments(odeIsFuncHandle,odeTreatAsMFile, solver_name, ode, tspan, y0, options, varargin);
disp(t,xa);
f=@(t,y) [-y(2) y(1) -A1(y(1)-B1); C1*D1*(y(3)-E1) -C1*y(2); -G1*y(3) +F1*max(0,y(1)-H1)];
[t,xb]=ode45(f, [0 180], [250 0 350]);
disp(t,xb);
figure(1)
plot(t,xa(:,1)+50,"LineWidth",2); ylabel("glucose(mm/dl)");
xlabel("time(min)");title('Glucose dynamics')
hold on
plot(t,xb(:,1),"LineWidth",2); ylabel("glucose(mm/dl)");
xlabel("time(min)");title('Glucose dynamics')
legend ('Orignal','Dexcom Curve')
hold off
%hold on
figure(2)
plot(t,xa(:,2)*33,"LineWidth",2); ylabel("Interstitial insulin(\uU/ml)");
xlabel("time(min)");title('Interstitial insulin dynamics')
hold on
plot(t,xb(:,2),"LineWidth",2); ylabel("Interstitial insulin(\uU/ml)");
xlabel("time(min)");title('Interstitial insulin dynamics')
legend ('Orignal','Dexcom Curve')
hold off
figure(3)
plot(t,xa(:,3)+5,"LineWidth",2); ylabel("Plasma insulin(\uU/ml)");
xlabel("time(min)");title('Plasma insulin dyanmics')
hold on
plot(t,xb(:,3),"LineWidth",2); ylabel("Plasma insulin(\uU/ml)");
xlabel("time(min)");title('Plasma insulin dyanmics')
legend ('Orignal','Dexcom Curve')
hold off
채택된 답변
Walter Roberson
2022년 5월 23일
[250 :0 350]
ans = 350
Your vector of initial conditions only has one entry.
Your line of code will not be interpreted as
[250, :0, 350]
and that would be a syntax error if it was.
Likewise it is not interpreted as [250 :0: 350] -- which would give you an empty vector.
The 250 :0 part is being intepreted as (250:0) -- the vector of values starting with 250, incrementing by 1, and ending with the first number that is greater than 0... and since 250 is greater than 0, that would be the empty array.
댓글 수: 16
@Walter Roberson so how should i actualy right. i am stuck in it
@Walter Roberson see these graphs i am writing this code for it. and these are my equations. i think i am doing wrong

When you call
[t,xa]=ode45(f, [0 180], [250 :0 350]);
the second [] is your initial conditions; with your code, you need three initial conditions.
I recommend that you do not use the : operator in defining your initial conditions. For example,
[t,xa]=ode45(f, [0 180], [250, 30, 350]);
but adjust that for your actual initial conditions. Do not compute them with expressions: just list them.
Since you chose names for the constants in your code that differ from those above it is impossible for us to correct your function line
f=@(t,y) [-y(2) y(1) -A(y(1)-B); C*D*(y(3)-E) -C*y(2); -G*y(3) +F*max(0,y(1)-H)];
i know i think i type it wrong as [ 2 : 0 1]
but i am having error in ode45 function . it is saying t is unused here @Walter Roberson thats is my reall problem
@Walter Roberson now tell me how should i actualy write this ode 45 line in this code
[~,xa]=ode45(f, [0 180], [2, 0, 1]);
f=@(t,y) [-y(2) y(1) -A(y(1)-B); C*D*(y(3)-E) -C*y(2); -G*y(3) +F*max(0,y(1)-H)];
your A is a constant not a function. You cannot index A at (y(1)-B)
MATLAB is completely lacking in implied multiplication. There are no cases in MATLAB in which P(Q) means that P is to be multiplied by Q.
f=@(t,y) [-y(2)y(1)-A(y(1)-B);C*D*(y(3)-E)-C*y(2);-G*y(3)+F*max(0,y(1)-H)];
@Walter Roberson what if it is like this?
Let's play a game: search the two places where you forgot to include the "*" sign in the function definition.
@Torsten i think it worked. such small change helped me alot. thankyou so so much !
@Torsten i enjoyed the game. it solved my problem. thankss
You're welcome. I like people having humor.
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)

