Different color for each line
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rachele Franceschini
am 13 Apr. 2022
Kommentiert: Rik
am 13 Apr. 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 Kommentare
Akzeptierte Antwort
Chunru
am 13 Apr. 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 Kommentare
Stephen23
am 13 Apr. 2022
Bearbeitet: Stephen23
am 13 Apr. 2022
For distinguishable colors you will need to use a more suitable colormap, e.g. TAB20 here:
https://www.mathworks.com/matlabcentral/fileexchange/62729-matplotlib-perceptually-uniform-colormaps
or perhaps generate your own colormap to suit your document colorscheme:
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Orange finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!