码迷,mamicode.com
首页 > 其他好文 > 详细

设置X轴,y轴分格线,使用对象句柄完成

时间:2018-08-24 20:42:18      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:title   and   pos   grid   its   返回   zed   nes   space   

x=logspace(-2,0,500);
y=((sin(1./x)).^2)./x;
plot(x,y);
set(gca,‘xscale‘,‘log‘,‘Yscale‘,‘linear‘);   %设置横坐标是log,纵坐标是默认线性
title(‘Y-logX‘);
set(gca,‘xgrid‘,‘on‘,‘LineWidth‘,1,‘Ygrid‘,‘off‘)   %#设置x坐标轴分格线,及其粗细,y坐标轴的关闭

  gca----用来返回当前axes (坐标图)对象的句柄

在command 里面输入gca

Axes (Y-logX) (具有属性):

XLim: [0.0100 1]
YLim: [0 100]
XScale: ‘log‘
YScale: ‘linear‘
GridLineStyle: ‘-‘
Position: [0.1300 0.1100 0.7750 0.8150]
Units: ‘normalized‘

设置X轴,y轴分格线,使用对象句柄完成

标签:title   and   pos   grid   its   返回   zed   nes   space   

原文地址:https://www.cnblogs.com/Airboy1/p/9531817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!