Draw a gradient circle within a circle

2 views (last 30 days)
I want to code a gradient circle within a circle like shown in the diagram. Any help will be appreciated.

Accepted Answer

Matt J
Matt J on 19 Jun 2021
Edited: Matt J on 19 Jun 2021
One way might be to use a patch with vertex interpolation, as in this example.
EDIT:
Here's how you might apply that to a circle:
t=linspace(0,360,500); t(end)=[];
x=cosd(t);
y=sind(t);
c=cosd(t);
patch(x,y,c); colormap(gray); axis equal; caxis([-0.7970 ,0.6373])
  15 Comments
Sajjad Ahmad Khan
Sajjad Ahmad Khan on 20 Jun 2021
@Matt J Thank you so much. I appreciate your help!
Matt J
Matt J on 20 Jun 2021
You're quite welcome, but please Accept-click the answer if you consider the question resolved.

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Performance in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!