您的位置:首页 > 编程语言 > MATLAB

Matlab Tricks(二十四)—— title 置于图像之下(包括 subplots 的情形)

2017-03-02 12:41 357 查看

1. 使用 title 的 ‘position’ 属性进行设置

plot(1:10, 1:10), title('y=x', 'position', [5.5, 0])


2. 使用 xlabel

plot(1:10, 1:10), xlabel('y=x')
imshow('pout.tif'), xlabel('y=x')
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  title xlabel position