assign colarmap to multiple lines' lengths
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a graph with weights associated to the edges. I plot the edges as lines and I would like to assign colors in a continuous colormap to each edge. Does any one know how to do it? Thanks.
0 Commenti
Risposte (2)
Kelly Kearney
il 25 Giu 2013
Do you mean something like this?
x = 1:10;
y = rand(1,10);
w = 1:10; % weights
patch([x NaN],[y NaN],[c NaN], 'edgecolor', 'interp', 'facecolor', 'none')
0 Commenti
Zhenjia
il 26 Giu 2013
1 Commento
Walter Roberson
il 26 Giu 2013
patch would not require that you divide the lines if you do not want the crossing to influence the coloring.
Vedere anche
Categorie
Scopri di più su Color and Styling in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!