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!