How to set a legend with a label for two or more lines?

337 ビュー (過去 30 日間)
Lemuel Carlos Ramos Arzola
Lemuel Carlos Ramos Arzola 2020 年 2 月 7 日
コメント済み: Adam Danz 2020 年 2 月 8 日
Hello,
In the graphic legend I want to share the same label for two or more lines.
For example, I have two (or more) pair of data
x = linspace(0,0.5);
for i = 1:3
y1(i,:) = x.^2 + i;
y2(i,:) = (2*x).^2 + i;
end
My plot instructions are
hold on
plot(x,y1,'-')
set(gca,'ColorOrderIndex',1)
plot(x,y2,'--')
legend({'label 1','label 2','label 3'})
I want that the first curves of y1 and y2 share the label “label 1” and so on for the second and the thirds lines, “label 2” and “label 3”, respectively. Something like this
figure2.png
Thanks in advance for the answers.
  10 件のコメント
Lemuel Carlos Ramos Arzola
Lemuel Carlos Ramos Arzola 2020 年 2 月 7 日
Excellent alternative solution.
Thanks
(but the actual problem is unsolved)
Adam Danz
Adam Danz 2020 年 2 月 7 日
I understand. Walter pointed you to a function on the file exchange that might be helpful in building a custom legend.

サインインしてコメントする。

採用された回答

Jeremy
Jeremy 2020 年 2 月 7 日
This isn't a particularly elegant solution, but I think it does what you want.
x = linspace(0,0.5);
for i = 1:3
y1(i,:) = x.^2 + i;
y2(i,:) = (2*x).^2 + i;
end
hold on
plot(x,y1,'-')
set(gca,'ColorOrderIndex',1)
plot(x,y2,'--')
[lh, labelhandles] = legend({'label 1','label 2','label 3'});
labelhandles(5).LineStyle = '--';
labelhandles(4).YData = [0.83 0.83];
labelhandles(5).XData = [0.0460 0.5057]; labelhandles(5).YData = [0.760 0.760];
This will only update one of the legend entries, I trust you can extend this solution to the others. You could also choose a labelhandles variable with a shorter name to make it look a little neater, if you wanted.
Your YData property can be tweaked until you are happy with the appearance.
plot_legend.png
  3 件のコメント
Lemuel Carlos Ramos Arzola
Lemuel Carlos Ramos Arzola 2020 年 2 月 7 日
編集済み: Lemuel Carlos Ramos Arzola 2020 年 2 月 7 日
Very good idea Jeremy!
A little bit complex but it tackled the problem. I will be working with the legend function outputs to generalize your idea in my actual code.
I hope in the future Matlab automates this issue.
Thanks a lot.
Dear Adam thanks for the "note of caution", very important too.
I love Matlab and now I also love the community.
Best,
Lemuel
Adam Danz
Adam Danz 2020 年 2 月 8 日
Good to hear!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by