ntitle

バージョン 1.4.0.0 (1.95 KB) 作成者: Chad Greene
Place a title inside a plot. Reduces title/xlabel ambiguity in figures with multiple subplots.
ダウンロード: 2.2K
更新 2013/8/19

ライセンスの表示

ntitle(titlestring,varargin) places a title within the plot instead of on top. In the spirit of Edward Tufte, this is intended to keep the title close to the data it describes and minimize wasted space. The ntitle function may prove particularly useful for figures with several subplots, where titles can sometimes become confused with xlabels above them.

By default, ntitle centers the title at the top of the plot, but any of the location coordinates (e.g., north, southwest, etc.) can be used with the argument 'location'. Output h provides the handle for the ntitle.

EXAMPLES:
% First make a plot:
x = -50:.1:50;
y = 10*sin(x)+.1*x.^2;
plot(x,y);
axis([-50 50 -50 300])
box off

% Here are 9 obnoxious examples of how to use ntitle:
ntitle('Title 1');
ntitle('{\it Title 2}','location','northwest');
ntitle('Title 3 ','location','northeast','fontsize',10,'edgecolor','b');
ntitle(' Title 4 ','location','east','color','r');
ntitle('Title 5','location','center','color','m','backgroundcolor','y');
ntitle(' Title 6','location','west','color',[.2 .5 .8]);
ntitle(' Title 7','location','southwest','fontname','Courier');
ntitle('Title 8','location','south','fontweight','bold','fontname','Times');
h9 = ntitle('Title 9 ','location','southeast','fontsize',30);

Consider pairing ntitle with figtitle (http://www.mathworks.com/matlabcentral/fileexchange/42667-figtitle).

引用

Chad Greene (2024). ntitle (https://www.mathworks.com/matlabcentral/fileexchange/42114-ntitle), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2012b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersTitle についてさらに検索
タグ タグを追加
謝辞

ヒントを与えたファイル: figtitle, label, Daily Antarctic sea ice concentration

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.4.0.0

example image was lost in the last update.

1.3.0.0

Changed default font size.

1.1.0.0

A title handle is now returned only if the user requests it.

1.0.0.0