凡例の表示順はどうしたら変更できますか?

38 views (last 30 days)
MathWorks Support Team
MathWorks Support Team on 14 Jun 2016
プロットの凡例は通常データをプロットした順に表示されますが、任意の順番で表示せることはできますか?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 14 Jun 2016
プロットの凡例の順序は通常、データをプロットした順番と一致しますが、legend 関数実行時に順番を指定する ことができます。
それぞれのオブジェクトのハンドルを、表示されたい順番に legend 関数の第一引数として与えます。
 
figure(1)
hold on
h0 = plot(rand(5,1),'red');
h1 = plot(rand(5,1)+1,'blue');
h2 = plot(rand(5,1)+2,'black');
legend([h0,h2,h1], 'data0','data2','data1'); % h0, h2, h1 の順番で凡例を作成
hold off
 
 

More Answers (0)

Products


Release

R2015a

Community Treasure Hunt

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

Start Hunting!