figtitle

バージョン 1.4.1 (119 KB) 作成者: Chad Greene
Create a title for a figure with multiple subplots.
ダウンロード: 8K
更新 2019/5/20

ライセンスの表示

figtitle creates a title centered at the top of a figure. This may be used to add a title to a figure with several subplots.
Syntax:
figtitle('TitleString')
figtitle('TitleString','TextProperty','TextValue')
h = figtitle(...)

Description:
figtitle('TitleString') centers a title at the top of a figure and sets the figure name to 'TitleString'.

figtitle('TitleString','TextProperty',TextValue) formats the title with property name value pairs (e.g., 'FontSize',20)

h = figtitle(...) returns a handle h of the newly-created title.

Examples:

figtitle('My Title')

figtitle('My Title','fontweight','bold')

figtitle('My Title,'fontsize',18,'fontangle','oblique')

h = figtitle('My Title');
set(h,'edgecolor','magenta');

In many cases a figure title may overlap a subplot title. To reduce ambiguity, try pairing this function with the ntitle function, which is available on the Mathworks File Exchange here: http://www.mathworks.com/matlabcentral/fileexchange/42114-ntitle. The image for this FEX upload was created using the figtitle and ntitle example given in figtitle.m.

引用

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

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

ヒントを得たファイル: mtit: a pedestrian major title creator, ntitle

ヒントを与えたファイル: SimOutUtils, label

Community Treasure Hunt

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

Start Hunting!

figtitle_documentation

バージョン 公開済み リリース ノート
1.4.1

Added live scripts

1.4.0.0

Vectorized a loop.

1.3.0.0

Added example file. Changes to figtitle: now supports invisible figures and now changes the name of figures to input title string.

1.2.0.0

Acknowledged submission 3218.

1.1.0.0

Updated examples. Also no longer returns a title handle unless the user requests it.

1.0.0.0