subplotplus() - Enhanced layout MATLAB subplot function

版本 1.1.0.0 (3.8 KB) 作者: Alon Geva
subplotplus() is an enhanced alternative to the inherit subplot() function of MATLAB.
2.1K 次下载
更新时间 2012/1/18

查看许可证

[subplot_handles,LabelsFontSize] = subplotplus(subplot_array,varargin) is an enhanced alternative to the inherit subplot() function of MATLAB. Using subplotplus() almost any layout of subplots can be created in a particular figure.
The desired subplot layout is described using a complex cell array where each "atomic" cell, within the cell array, corresponds to a subplot. The function scans the content of the input cell array and builds the desired matching subplot layout in the figure. The size, alignment and font size of the subplots is automatically adjusted for best appearance.
The function is recursive in nature so any level of subplot divisions can be created. The returned arguments are the created subplot handles as well as the optimal label (X and Y) font size that should be used for a specific subplot for best appearance.

Input arguments:
+ subplot_array: A cell array that describes the desired subplot layput. For example, a 1x2 subplot layout where the right-end subplot is further divided down to a column of 3 additional subplots is described by the following cell expression: {{[]},{{[]};{[]};{[]}}}.
A group of subplot cells, sharing the same "parent" cell, can be glued together in order to save figure space using the '-g' option string at the cell's content (instead of empty group []). For example, if the 3 columned subplots of the previous example are to be glued together, sharing the same X-axis, the follwing cell expression should be used:
{{[]},{{['...-g...']};{['...-g...']};{['...-g...']}}}.
+ varargin: only used for function recursion and should not be used by the user.

Output arguments:
+ subplot_handles: A list of the created subplot handles by their order of appearnace in the figure, starting from the left-top corner in a clockwise manner.
+ LabelsFontSize: A matching list of X/Y-axis optimal labels size for further user work on the subplots.

Alon Geva
$Revision: 1.00 $ $Date: 12/01/2012 18:52:53 $

引用格式

Alon Geva (2024). subplotplus() - Enhanced layout MATLAB subplot function (https://www.mathworks.com/matlabcentral/fileexchange/34594-subplotplus-enhanced-layout-matlab-subplot-function), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Subplots 的更多信息
致谢

启发作品: subtightplot

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.1.0.0

Fixing an error in the descreption text:
"following cell expression: {{[]},{{[]};{[]};{[]}}}..." instead of:
"following cell expression: {{[]},{{[]};{[]} {[]}}}..."

1.0.0.0