Draw a gradient circle within a circle

19 visualizzazioni (ultimi 30 giorni)
I want to code a gradient circle within a circle like shown in the diagram. Any help will be appreciated.

Risposta accettata

Matt J
Matt J il 19 Giu 2021
Modificato: Matt J il 19 Giu 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 Commenti
Sajjad Ahmad Khan
Sajjad Ahmad Khan il 20 Giu 2021
@Matt J Thank you so much. I appreciate your help!
Matt J
Matt J il 20 Giu 2021
You're quite welcome, but please Accept-click the answer if you consider the question resolved.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by