axtitle.m

来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 13 行

M
13
字号
% function = axtitle(str,fontSize)%% adds a title to axes created with splitAxes, assuming that that % is the active axis% (regular 'title' command puts it too high up)function garb = axtitle(str,fontSize)if (~exist('fontSize'))  fontSize=12;endtext(0.4,0.9,str,'Units','Normalized','FontSize',fontSize);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?