Matlab设置网格线密度(坐标精度)
时间:2015-09-20 19:01:12
收藏:0
阅读:689
1.不精确
set(gca,‘XMinorTick‘,‘on‘)

这样的话知识x轴显示了细的密度,网格线并没有变。
2.精确
set(gca,‘xtick‘,-1:0.1:1);
set(gca,‘ytick‘,-1:0.1:1);

原文:http://www.cnblogs.com/hxsyl/p/4823868.html
评论(0)