Figure Docking (group)

189 visualizaciones (últimos 30 días)
Philip
Philip el 2 de Oct. de 2011
Comentada: Debt el 4 de Mzo. de 2022
What I'd like to do is take multiple figures and dock them all in one panel. Ideally I would dock them all in one figure Window, but I'm open to docking them in Matlab's main window (which I know how to do with the WindowStyle property) and then undock that group as a whole (which I can do with the Undock Figures button), but I dont know how to do it programmatically. Thanks for any thoughts or help.
This can be in any version of Matlab 2009b or newer.

Respuestas (2)

Daniel Shub
Daniel Shub el 3 de Oct. de 2011
I think figures can only be docked to the main MATLAB window. You cannot dock a figure into another figure. The property you are looking to do this programmatically is "WindowStyle":
h = figure;
set(h, 'WindowStyle', 'Docked');

Grzegorz Knor
Grzegorz Knor el 3 de Oct. de 2011
You can try this function:
Warning: This code heavily relies on undocumented and unsupported Matlab functionality. It works on Matlab 7.4, but use at your own risk!

Categorías

Más información sobre Graphics Objects en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by