Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
919 views
in Technique[技术] by (71.8m points)

matlab - One combined legend entry for multiple plots

For some reason, I would like to plot the line and marker of the same data separately.

data1 = (1:1:10)';
data2 = (1:2:10);
figure(1);
plot(data1,data1,'or');
hold on;
plot(data2,data2,'-r');
legend('data');

However it will only display the legend for the first plot. And Matlab seems not to have option to manipulate the legend marker, color and linestyle. enter image description here

How can I make legend like this?

enter image description here

Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You will need to plot an invisible third plot (with almost no data to keep it fast) to define your legend:

data1 = (1:1:10)';
data2 = (1:2:10);
figure(1);
plot(data1,data1,'or'); hold on
plot(data2,data2,'-r'); hold on

%// legend plot
lp = plot(0,0,'-r','Marker','o','visible','off')
legend(lp,'data');

enter image description here

You need to pass the handle of that invisible plot to the legend command or you could even put the invisible plot into the legend:

legend(plot(0,0,'-r','Marker','o','visible','off'),'data');

If you need that more often, you can write a little helper function

style = @(LineStyle, MarkerStyle) plot(0,0,LineStyle,'Marker',MarkerStyle,'visible','off')
legend(style('-r','o'),'data');

... which you can customize with 'color', 'LineWidth' or whatever you want.

It enables you to create fully customized legends with multiple entries independently from your actually data:

legend([style('-r','o'),style('-b','x'),style('-g','v')],{'1','2','3'});

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...