Automatically set figure position for multiple figures
조회 수: 7 (최근 30일)
이전 댓글 표시
Hey guys,
is it possible to fix the position of the figures for multiple figures?
I am looking for a command as
set(0, 'DefaultFigurePosition', Pos);
but for multiple windows.
Thanks in advance
댓글 수: 2
Joep
2015년 11월 26일
All in once? or separate?
I should say just
h1=figure %figure1
h2=figure %figure1
set(h1, 'Position', Pos);
set(h2, 'Position', Pos);
U mean like this?
Titus Edelhofer
2015년 11월 26일
Hi, sorry, I don't understand. Are those figures already open? In this case use
get(0, 'children')
to access an array of all available figures.
Titus
답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!