How to reduce number of entries in legend
67 次查看(过去 30 天)
显示 更早的评论
I am plotting 9 curves from the following 9 vectors.
r_t1 , g_t1 , b_t1 r_t2 , g_t2 , b_t2 r_t3 , g_t3 , b_t3
My color choice is r---red g---green b---blue
and marker is
t1 ---- '+', t1 ---- '*', t1 ---- 'o'
So instead of having '9' entries in legend, I want only 6. 3 indicating r,g,b and 3 indicating t1,t2,t3
How can i do this?
采纳的回答
Hikaru
2014-9-16
I don't really understand the specifics here, but you could choose which plot to display in the legend if you have the handles.
For example.
figure, hold all
r1 = plot(0:9,1:10,'-r')
g1 = plot(0:9,1:2:20,'-g')
b1 = plot(0:9,2:3:30,'-b')
legend([r1 g1],{'Red','Green'}) % will display only 2 entries in the legend
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!