Draw a gradient circle within a circle

5 次查看(过去 30 天)
I want to code a gradient circle within a circle like shown in the diagram. Any help will be appreciated.

采纳的回答

Matt J
Matt J 2021-6-19
编辑:Matt J 2021-6-19
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 个评论
Matt J
Matt J 2021-6-20
You're quite welcome, but please Accept-click the answer if you consider the question resolved.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by