Pause and restart when my app finished
    6 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
How can I pause the matlab script until I've closed a matlab app?
In my case, I've an app that serves to select the input of my calculations, but while I'm choosing the input the script continues to run. I need to suspend the script until the user has finished to select the input.
What can I do?
3 comentarios
  Alessandro Alberico
 el 29 de Mzo. de 2019
				
      Editada: Alessandro Alberico
 el 29 de Mzo. de 2019
  
			
		Respuestas (1)
  Marc Youcef
      
 el 4 de Nov. de 2020
        There is indeed cleaner way, as explained here:
my_app_handle = my_app;
uiwait(my_app_handle.UIFigure_property)
disp("hello")
hello
0 comentarios
Ver también
Categorías
				Más información sobre Entering Commands 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!