figures

バージョン 1.0.0.0 (16.1 KB) 作成者: Erik
A function to create multiple figure windows.
ダウンロード: 56
更新 2017/7/21

figures: a MATLAB function to create multiple figure windows
Description
figures is an extension to MATLAB's built-in figure command. figures supports all the syntax options of figure. Hence, it is highly compatible with most, if not all of your existing MATLAB files. The syntaxes below are the extended possibilities provided by figures.

Demonstration
Run figuresdemo for a demonstration of the possibilities of figures.

Syntax
figures does the same as the figure command; it creates a new figure window.

figures(n) creates n figures in ascending order. Any currently existing figure windows are not replaced. Instead, the lowest available numbers are used to create the figure windows.

figures(N) activates the figure windows with the numbers in vector N. Any non-existent figure windows are created. N must be a vector of positive integers.

figures(__,'PropertyName',propertyvalue,...) uses the specified property values for all created or activated figure windows.

figures(__,C) uses the specified property values in cell C for each created or activated figure window. Construct C using the following syntax: C = {{set1}, ..., {setN}}, where each set is any number of 'PropertyName',propertyvalue pairs.

F = figures(__) also returns F, a column vector of handle(s) to the created or activated figure window(s) in descending order. This order is the same as MATLAB's built-in list of currently existing figure windows from get(0,'Children'). The order reflects the latest activated figure window.

引用

Erik (2024). figures (https://github.com/erikhuizinga/figures), GitHub. 取得済み .

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

Community Treasure Hunt

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

Start Hunting!

GitHub の既定のブランチを使用するバージョンはダウンロードできません

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

Minor text updates
Minor description and help text enhancements.
Added a demo script: figuresdemo.m.
figures now supports all the syntaxes of figure, hence it is obsoleted by figures.
Updated the readme and help section to reflect the enhancements.
Minor help text update

この GitHub アドオンでの問題を表示または報告するには、GitHub リポジトリにアクセスしてください。
この GitHub アドオンでの問題を表示または報告するには、GitHub リポジトリにアクセスしてください。