Spans Figures on Screen

版本 1.2.0.0 (1.7 KB) 作者: Yonathan Nativ
This (very small) function tiles all opened figures on the screen
260.0 次下载
更新时间 2012/8/23

查看许可证

you can use this function to tile all opened figures on screen. simply run spanFigures

or use it in code to span only desired figures, passing the requested figures handle vector to the function
spanFigures( hFig )

usage example:
hFig = zeros(7,1);
for n = 1 : 7
hFig(n) = figure;
plot(randn(20,2))
end
spanFigures(hFig,true,'xy')
or:
spanFigures([],true,'xy')

引用格式

Yonathan Nativ (2024). Spans Figures on Screen (https://www.mathworks.com/matlabcentral/fileexchange/31604-spans-figures-on-screen), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2007a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

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

replaced a for loop with a vector (embarrassing :)

1.1.0.0

added:
- option to link the figures axes (zooming on all together)

- consideration in the screen aspect ratio in the sorting of the figures

1.0.0.0