How to stop popping up of plot figures unnecessarily in Matlab app designer?
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Amlan basu
el 9 de Mzo. de 2023
Comentada: Kevin Holly
el 9 de Mzo. de 2023
My GUI desgned on MATLAB app designer is working perfectly. However, at one stage it is popping out a separate figure which should not appear.
How I can stop that plot figure from popping out?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Kevin Holly
el 9 de Mzo. de 2023
If it is due to a plot function, you need to define the uiaxes for the plot. such as:
plot(app.UIAxes,x,y)
6 comentarios
Kevin Holly
el 9 de Mzo. de 2023
There is no need to draw the plot if you are not using it. Unless you want to save the figure without displaying it. Could speed up your program by commenting it out.
Ver también
Categorías
Más información sobre Develop Apps Using App Designer 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!