如何使用 legend 命令得到两个图注
偶想从不同的.mat文件中导出数据画到一个图里面,在第一个.mat文件时用semilogy(EbNo,ber,'bv-'); hold on;第二个.mat文件时再semilogy(EbNo,ber,' r*-');,然后定义xlabel(),ylabel,
但是legend('第一','第二');不管在放哪个后面,还是每个里面都用,出来的图始终只是legend前面那个bv-,或是r*,怎样用才可以正确显示两个说明呢?
偶是菜鸟,不知道主题选对没有,向各位请教了哈:@)
[ 本帖最后由 eight 于 2007-10-8 19:33 编辑 ] 在legend的帮助文档里讲的很清楚了。把这个例子看懂,你的问题就解决了
b = bar(rand(10,5),'stacked'); colormap(summer); hold on
x = plot(1:10,5*rand(10,1),'marker','square','markersize',12,...
'markeredgecolor','y','markerfacecolor',[.6 0 .6],...
'linestyle','-','color','r','linewidth',2); hold off
legend(,'Carrots','Peas','Peppers','Green Beans',...
'Cucumbers','Eggplant') 先谢过哈
页:
[1]