Concentric circles with different colors

6 次查看(过去 30 天)
I'm trying to make concentric circles that have different edge colors like this:
I have made the concentric circles but I only can do it with one unified edge colors for all the circles. How do I specify each one with a different color?
Here is my code so far:
for
i=30:-5:5
rectangle('Position',[-i,-i,2*i,2*i],'Curvature',[1 1],...
'EdgeColor','y', 'LineWidth',4)
end
Thanks!

回答(3 个)

Gayatri Menon
Gayatri Menon 2018-2-16
Hi,
Instead of using color option for specifying the color, you could use RGB triplets to specify them.You could use rand command to generate random values for RGB triplets in each iteration
rectangle('Position',[-i,-i,2*i,2*i],'Curvature',[1 1],'EdgeColor',rand(1,3), 'LineWidth',4)
Hope the above helps
Thanks

Jos (10584)
Jos (10584) 2018-2-16
You can specify a colormap beforehand:
R = 30:-5:5 ; % radii
N = numel(R) ; %
Cmap = parula(N) ; % one of the many available maps, see the help
% now loop over the radii and colormaps using indexing
for k = 1:N
pos = R(k) * [-1 -1 2 2] ; % position
clr = Cmap(k,:) ; % RGB triplet
rectangle('Position', pos, 'Curvature', [1 1], ...
'EdgeColor',clr, 'LineWidth', 4)
end

Pratibha Gangwar
Pratibha Gangwar 2022-1-24
5 concentric circle

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by