can any one tell me how can i change the color of different part of a contour?like an image i attached here.I have no idea.thanks in advance

조회 수: 1 (최근 30일)
can any one tell me how can i change the color of different part of a contour?like an image i attached here.I have no idea.thanks in advance
  댓글 수: 3
fariba amini
fariba amini 2016년 7월 14일
I have the coordinates which are mentioned in image. thanks.I will try it.
fariba amini
fariba amini 2016년 7월 14일
Dear Siva: I did what you said. but I've got a problem. I dont know how to change the color in "for loop".I use plot command in a "for loop".but I can not change the color in plot command.for example in first iteration I want to have red color and in second iteration i wanna have green color.I dont know what to do. thanks in advance

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2016년 7월 14일
colortable = [0 0 0; %black
0 .8 .1; %bright-ish green-ish
.05 .5 0.05; %darker green-ish
... %etc
];
for K = 1 : number_of_segments
these_x = segment_x{K};
these_y = segment_y{K};
this_color = colortable(K,:);
plot(these_x, these_y, 'Color', this_color);
hold on
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Display and Exploration에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by