Automatically set figure position for multiple figures
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Joep
il 26 Nov 2015
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
il 26 Nov 2015
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
Vedere anche
Categorie
Scopri di più su Graphics Performance in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!