加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

matlab figure标题;plot坐标范围;添加加密网格

(2013-09-14 21:14:41)
图像坐标 题目添加
figure( 'name', 'write name u wanna be' );
一幅对话框中子图像
subplot( 2, 1, 1 );上面图
subplot( 2, 1, 2 );下面图
subplot(2,2,1) subplot(2,2,2)
subplot(2,2,3) subplot(2,2,4)
-----------我是分界线----------------
每幅图像添加坐标,标题
title(‘name of ur plot ’)
xlabel( 'horizonal position' );
ylabel( 'vertical position' );
zlabel( 'deflectoin' );
legend('deflection and fitting', 'Location', 'NorthEast' ); %右上角添加说明
观察角度改变
view( -41.5, 22 );
-----------------我是分界线-------------------
画完图像,觉得坐标尺度不是自己想要的怎么办
可以用xlim,ylim,zlim修改一下坐标尺度
例如
>> xlim([-0.0015 0.0015]);
同理ylim,zlim
------------我是分界线-----------------------
图像画完,觉得是不是中间缺少网格,
gird on % 添加网格
觉得网格不够密度
grid minor
不想看到网格
grid off

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有