%filename: sa.m clear all % clear all variables clf % and figures global T TS TMAX QMAX; global Rs Csa dt; in_sa %initialization for klok=1:klokmax t=klok*dt; QAo=QAo_now(t); Psa=Psa_new(Psa,QAo); %new Psa overwrites old %Store values in arrays for future plotting: t_plot(klok)=t; QAo_plot(klok)=QAo; Psa_plot(klok)=Psa; end %Now plot results in one figure %with QAo(t) in upper frame % and Psa(t) in lower frame subplot(2,1,1), plot(t_plot,QAo_plot) subplot(2,1,2), plot(t_plot,Psa_plot)