matlab で凡例コマンドを使用する場合、凡例シンボルとそれに対応するラベルの間の水平距離を縮めるにはどうすればよいですか?
コード例:
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');