フィルターのクリア

Draw a gradient circle within a circle

5 ビュー (過去 30 日間)
Sajjad Ahmad Khan
Sajjad Ahmad Khan 2021 年 6 月 19 日
コメント済み: Matt J 2021 年 6 月 20 日
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 件のコメント
Sajjad Ahmad Khan
Sajjad Ahmad Khan 2021 年 6 月 20 日
@Matt J Thank you so much. I appreciate your help!
Matt J
Matt J 2021 年 6 月 20 日
You're quite welcome, but please Accept-click the answer if you consider the question resolved.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by