MATLAB小弟是新手 编了个程序画两个同心圆 想给圆环涂色 怎么办啊

2024-12-01 16:55:50
推荐回答(1个)
回答1:

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 on
fill(x2,y2,'r') %先填大圆
fill(x1,y1,'w') %用背景色填充小圆。