【发布时间】:2013-06-28 01:28:21
【问题描述】:
在matlab中使用legend命令时,如何减小图例符号与其对应标签之间的水平距离?
示例代码:
Line1=plot(x1,y1,'s');
Line2=plot(x2,y2,'o');
Line3=plot(x3,y3,'^');
Leg=legend([Line1, Line2, Line3],...
'Line1 text','Line2 text','Line3 text',...
'Location','NorthEast');
【问题讨论】:
标签: matlab legend matlab-figure legend-properties