필터 지우기
필터 지우기

How do I modify the code to get a plot?

조회 수: 2 (최근 30일)
YuChe Kao
YuChe Kao 2018년 2월 21일
댓글: YuChe Kao 2018년 2월 21일
The program only run the result with a blank plot, how should I change my code to get a plot? My code is like this below
for t=0:0.05:5
T=170-22*t
if T>=120
G=(3.98*10^7)*exp(-6270/(8.314*(T-30)))*exp(-2.55*10^5/((T+273)*(200-T)))
else
G=(4.81*10^11)*exp(-6270/(8.314*(T-30)))*exp(-5.51*10^5/((T+273)*(200-T)))
end
plot(t,G);
axis([0,5,0,5]);
xlabel('Time');
ylabel('G')
end
Thank you a lot!!!

채택된 답변

Birdman
Birdman 2018년 2월 21일
t=0:0.05:5;
for i=1:numel(t)
T(i)=170-22*t(i);
if T(i)>=120
G(i)=(3.98*10^7)*exp(-6270/(8.314*(T(i)-30)))*exp(-2.55*10^5/((T(i)+273)*(200-T(i))));
else
G(i)=(4.81*10^11)*exp(-6270/(8.314*(T(i)-30)))*exp(-5.51*10^5/((T(i)+273)*(200-T(i))));
end
end
plot(t,G);
axis([0,5,0,5]);
xlabel('Time');
ylabel('G')

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by