[求助]一个图中能同时画几个曲线?
一个图中能同时画几个曲线?(当不同的温度时)function fcht02
h0=figure('toolbar','none',...
'position',[198 56 350 300],...
'name','fcht01');
Ka=0.0028;
Q=47595;
p=2.5;
H0=-75.847;
S0=-118.5252;
R=8.314;
t=0:100;
peq=exp(H0/R/T-S0/R);
F=1-exp(-4*1*(Ka*exp(-Q/R/T)*(p-abs(peq))).^(1/2).*t.^0.5);
T=250;
plot(t,F,'r-')
hold on
T=300;
plot(t,F,'g*')
xlabel('t');
ylabel('F');
grid on ;