Maltab 坐标轴精度设置

t=pi:pi/2:5*pi;
sinc=sin(30*t)./t;
h=plot(t,sinc);
set(h,...
    'linestyle','--',...
    'color','m',...
    'marker','diamond',...
    'markersize',8,...
    'markerfacecolor','c',...
    'markeredgecolor','b'...
    )


效果:


纵坐标边界的精度这样设置了。


添加代码:

 hAxes = gca;
 hAxes.YRuler.SecondaryLabel.String = 'on'; % <span style="color:#a020f0;">millions</span>



效果:

Maltab 坐标轴精度设置_第1张图片





你可能感兴趣的:(Maltab 坐标轴精度设置)