Different color for each line

2 vues (au cours des 30 derniers jours)
Rachele Franceschini
Rachele Franceschini le 13 Avr 2022
Commenté : Rik le 13 Avr 2022
I would lilke to get for each line a different color.
the table features by 10 columns and 20 rows.
new_table = [t1 medienews]
plot(new_table{1, 2:end}', new_table{2:end, 2:end}',"LineWidth",2,'color',);
legend(new_table.t1{2:end}, 'location', 'eastoutside')
  2 commentaires
KSSV
KSSV le 13 Avr 2022
Simple question....read about plot.
Rachele Franceschini
Rachele Franceschini le 13 Avr 2022
Modifié(e) : Rachele Franceschini le 13 Avr 2022
Yes, of course, as result I have 20 line with different color, but it is not for everyone. For eaxample I would like after red another color, not blue again (see LAZ and then LIG, as well as SAR and SIC)

Connectez-vous pour commenter.

Réponse acceptée

Chunru
Chunru le 13 Avr 2022
% generate some random data
x = rand(10, 20);
% Generate different colors
cmap = jet(20);
% Change the colororder
colororder(cmap);
plot(x)
legend(string(1:20), "Location", "eastoutside")
  2 commentaires
Stephen23
Stephen23 le 13 Avr 2022
Modifié(e) : Stephen23 le 13 Avr 2022
For distinguishable colors you will need to use a more suitable colormap, e.g. TAB20 here:
or perhaps generate your own colormap to suit your document colorscheme:
Rik
Rik le 13 Avr 2022
comment posted as flag by @Rachele Franceschini:
good tips

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Colormaps dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by