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

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')
原文地址:https://www.cnblogs.com/mtcnn/p/9422119.html