Using Legend
조회 수: 15 (최근 30일)
이전 댓글 표시
I have a 5 by 40 matrix and I’d like to plot 27 first columns as one color and last 13 columns as second color. My problem is that when i put legend to label each color, both legends are shown with the same color (always the same color as the first 27 columns). I appreciate your help. Thanks!
댓글 수: 0
채택된 답변
Fangjun Jiang
2011년 6월 5일
Look at the example in the document here. The legend should have the same color as they are used in the curve. What version of Matlab are you using?
추가 답변 (1개)
Fangjun Jiang
2011년 6월 6일
In your example, if you have legend('a','b','c','d','e','f'), you'll have the right legend. The problem is that you have 6 curves, the first 4 are color blue and the last 2 are color red. You only made 2 legend marks thus it took the color of the first 2 curves (both are blue). Matlab legend() function is doing the right thing.
But, that is the problem you want to solve. Try this,
h=legend('a')
c=get(h,'Children')
set(c,'Color',[0 1 0])
You will see that it only makes one legend mark. Each legend mark will have three children (probably for line, marker and string). You can change the color for all of them by specifying the color as [Red Green Blue]. I believe this can solve your original problem.
댓글 수: 3
Fangjun Jiang
2011년 6월 6일
h=legend('a','b');
c=get(h,'Children');
set(c(1:3),'Color',[0 1 0]);
set(c(4:6),'Color',[1 0 0]);
Try to match them.
참고 항목
카테고리
Help Center 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!