Concentric circles with different colors
조회 수: 1 (최근 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!
댓글 수: 0
답변 (3개)
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
댓글 수: 0
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
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Orange에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!