can this plotted circle be filled? it needs to have a solid color

5 次查看(过去 30 天)
xCenter = 0; yCenter = 0; thetaValue = 0:360; radiusJoint = 1;
jointZerox = radiusJoint*cosd(thetaValue)+xCenter; jointZeroy = radiusJoint*sind(thetaValue)+yCenter;
plot(jointZerox,jointZeroy,'b')

回答(3 个)

Star Strider
Star Strider 2017-11-20
Use fill:
xCenter = 0;
yCenter = 0;
thetaValue = 0:360;
radiusJoint = 1;
jointZerox = radiusJoint*cosd(thetaValue)+xCenter;
jointZeroy = radiusJoint*sind(thetaValue)+yCenter;
fill(jointZerox,jointZeroy,'b')
axis equal

Chad Greene
Chad Greene 2017-11-20
You can use my circles function. Just specify, x,y location, radius, and facecolor.

Image Analyst
Image Analyst 2017-11-20
You might want to take a look at viscircles().

类别

Help CenterFile Exchange 中查找有关 Labels and Annotations 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by