同一坐标轴上两幅图的叠加
在坐标中,先画随机的10个点,同时画两个区域,如果点在区域中,点就被区域覆盖掉了,如何让他们同时出现呢t=0:pi/3:2*pi;
patch(320+70*sin(t),200+70*cos(t),'r'); hold;
patch(100+70*sin(t),100+70*cos(t),'y'); hold;
for i=1:1:10;
node(i)=struct('x_axis',fix(600*rand),'y_axis',fix(300*rand),'speed',10*rand,'net',0);
x(i)=node(i).x_axis; y(i)=node(i).y_axis;
end
plot(,,'+'); axis();
[ 本帖最后由 ChaChing 于 2009-4-5 20:04 编辑 ] 把hold改成hold on,如果区域颜色和点的颜色不一致,应该可以看出点的。 感谢!!!!
页:
[1]