Spans Figures on Screen

버전 1.2.0.0 (1.66 KB) 작성자: Yonathan Nativ
This (very small) function tiles all opened figures on the screen
다운로드 수: 259
업데이트 날짜: 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