theta=[0:0.01:2*pi,2*pi];x1=cos(theta);y1=sin(theta);x2=2*x1;y2=2*y1;plot(x1,y1,x2,y2)hold onfill(x2,y2,'r') %先填大圆fill(x1,y1,'w') %用背景色填充小圆。