我想在我的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 ... 任何想法都非常受欢迎 在这里输入代码