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

xCenter = 0; yCenter = 0; thetaValue = 0:360; radiusJoint = 1;
jointZerox = radiusJoint*cosd(thetaValue)+xCenter; jointZeroy = radiusJoint*sind(thetaValue)+yCenter;
plot(jointZerox,jointZeroy,'b')

Answers (3)

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
You can use my circles function. Just specify, x,y location, radius, and facecolor.

Tags

Asked:

on 20 Nov 2017

Answered:

on 20 Nov 2017

Community Treasure Hunt

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

Start Hunting!