Figure docking not working when an application is created using the MATLAB Compiler
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have created a GUI using guide that works the way I want it to when running in MATLAB. I now want to distribute it to others and am creating a "Standalone Application" using MATLAB Compiler. Everything seems to work correctly except the window docking. When I generate several figures I want them all docked so you can click on each labed tab for each figure. This works correctly when I run the application from MATlab, but does not work correctly when I run a generated standalone application. The figures each come up in their own window.
I have tried the following:
set(0,'DefaultFigureWindowStyle','docked');
figure('Name',fig1,'NumberTitle','off','WindowStyle','docked');
1 comentario
Respuestas (1)
Yair Altman
el 27 de Oct. de 2022
The ability to dock figures in deployed programs is available, but is intentionally blocked by the Matlab compiler. I think this limitation is regrettable, unnecessary, and completely self-defeating for MathWorks, but over the past decade I was not successful in convincing them to the contrary.
Luckily, there are several technical workarounds that do not require extensive recoding using tabs, which is the official "solution" offered for the limitation.
I will not post any workarounds publicly, but anyone with a legitimate business need to dock figures in compiled (deployed) applications is welcome to email me (altmany at gmail).
0 comentarios
Ver también
Categorías
Más información sobre MATLAB Compiler 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!