How to Add Legend to Plotted Data
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
mr mo
am 7 Dez. 2017
Kommentiert: mr mo
am 10 Dez. 2017
Hi. I've plotted 27 cubes with this code: https://www.mathworks.com/matlabcentral/fileexchange/15161-plotcube
for i=1:size(b,1)
plotcube([1 1 1],b(i,1:3),1,[1 0 0]);
end
for i=1:size(c,1)
plotcube([1 1 1],c(i,1:3),1,[0 1 0]);
end
for i=1:size(d,1)
plotcube([1 1 1],d(i,1:3),1,[0 0 1]);
end
and the b,c and d matrices are shown below:
b =[2 2 3
3 2 3
4 2 3
2 3 3
3 3 3
4 3 3
2 4 3
3 4 3
4 4 3];
c =[2 2 4
3 2 4
4 2 4
2 3 4
3 3 4
4 3 4
2 4 4
3 4 4
4 4 4];
d =[2 2 5
3 2 5
4 2 5
2 3 5
3 3 5
4 3 5
2 4 5
3 4 5
4 4 5];
At the end I want to add legend to the plotted cubes based on their colors. How can I do that? Thanks a lot.
3 Kommentare
Akzeptierte Antwort
Walter Roberson
am 10 Dez. 2017
Use something like
LineColors = [...] %n by 3 rgb list
ncolor = size(LineColors, 1);
for k=1:ncolor
Lh(k) = line(nan, nan, 'color', LineColors(k, :)) ;
end
legend(Lh, {'first label', 'second label'... })
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Legend 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!