Matlab两个图例在一个条形图中(使用num2str)

时间:2015-11-03 17:51:56

标签: matlab plot legend

我想在我的y = exp(x)情节中添加两个图例:

x=1:1:10;
y=exp(x);
figure; bar(x,y,'FaceColor',[0 .5 .5],'EdgeColor',[0 .9 .9],'LineWidth',0.5);  hold on; grid on;

h_legend1=legend(strcat('info 1: ', num2str(value 1),'info 2:', num2str(value 2),'%') ,'Location','best');
    set(h_legend1,'FontSize',12); hold on;

h_legend2=legend(strcat('info 1: ', num2str(value 1),'info 2:', num2str(value 2),'%') ,'Location','best');
    set(h_legend1,'FontSize',12); hold on;

但我不能......只绘制了legend2 ... 任何想法都非常受欢迎     在这里输入代码

0 个答案:

没有答案