how can i create a circle with a face color changing radially

2 次查看(过去 30 天)
I want to create such circle, in which it is colored with dark red in the center, to blue.

采纳的回答

John D'Errico
John D'Errico 2020-7-9
[x,y] = meshgrid(linspace(-3,3));
z = exp(-x.^2 - y.^2);
H = pcolor(z);
H.LineStyle = 'none';
colormap(jet)
axis equal
Lots of variations on this theme. Be creative.
  2 个评论
Ofek Dvir
Ofek Dvir 2020-7-9
Thats the scene I want to place this 'heat map' in- on that floor.
How can I add your code to mine so it won't take over the figure?
John D'Errico
John D'Errico 2020-7-9
pcolor produces a colored surface, at a default height of z==0.
You can add additional information to a figure if you use the hold command, and then issue additional information to the figure.
You can control various aspects of what you see, what is labeled (as you should know) by use of the graphics handles as returned from the various tools used to create what you plotted.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Polygons 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by