How to reduce number of entries in legend

조회 수: 69 (최근 30일)
xplore29
xplore29 2014년 9월 15일
답변: Hikaru 2014년 9월 16일
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?
  댓글 수: 1
xplore29
xplore29 2014년 9월 16일
Correction:
t1 ---- '+', t2 ---- '*', t3 ---- 'o'

댓글을 달려면 로그인하십시오.

채택된 답변

Hikaru
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개)

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by