1. 程式人生 > >【原始碼】繪製圖片標題的函式suplabel

【原始碼】繪製圖片標題的函式suplabel

將文字放置於一組subplot圖片的標題、x軸和y軸座標上。

Places text as a title, xlabel, or ylabel on a group of subplots.

該函式返回標籤和座標軸的控制代碼,即:

Returns a handle to the label and a handle to the axis.

[ax,h]=suplabel(text,whichLabel,supAxes)

supAxes是一個可選的輸入變數,用於指定subplot周圍的"super"座標軸位置。

supAxes is an optional argument specifying the Position of the “super” axes surrounding the subplots.

supAxes的預設值為[.075 .075 .85 .85]。

supAxes defaults to [.075 .075 .85 .85] specify supAxes if labels get chopped or overlay subplots.

使用示例如下:

subplot(2,2,1);ylabel(‘ylabel1’);title(‘title1’)

subplot(2,2,2);ylabel(‘ylabel2’);title(‘title2’)

subplot(2,2,3);ylabel(‘ylabel3’);xlabel(‘xlabel3’)

subplot(2,2,4);ylabel(‘ylabel4’);xlabel(‘xlabel4’)

[ax,h1]=suplabel(‘super X label’);

[ax,h2]=suplabel(‘super Y label’,‘y’);

[ax,h3]=suplabel(‘super Title’ ,‘t’);

set(h3,‘FontSize’,30)

原始碼下載地址:

http://page5.dfpan.com/fs/6lc5j2221229516a904/

更多精彩文章請關注微訊號:在這裡插入圖片描述