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 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
fariba amini
le 14 Juil 2016
Réponse apportée : Walter Roberson
le 14 Juil 2016
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 commentaires
Réponse acceptée
Walter Roberson
le 14 Juil 2016
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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Display and Exploration dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!