画了第一张图,在figure窗口上单击,然后运行第二次程序,在图上右击---add data---选定横纵坐标,就可以了。当然你得先把运行结果传到workspace
建一个矩阵存储结果
G=[0.8 0.2 0;0.3 0.5 0.2;0 0.1 0.9];
x0=[20 70 10];
n=3;
N=500;
X(1,:)=x0;
i=1;
err=1;
while norm(err)>0.0001&i<=N-1
X(i+1,:)=X(i,:)*G;
err=X(i+1,:)-X(i,:);
i=i+1;
end
h=plot(X);
title('组间转移情况')
s=cell(n,1);
for i=1:n
s{i,1}=[num2str(i)];
end
legend(h,s)
可以试一下:运行完第一个电子轨迹,做出图后 hold on %继续在上一个图中作图。存储坐标我就不知道了。呵呵
hold 可以继续画图