Ok so my code puts out a couple of plots and then based on those plots the user is supposed to make some circuit changes and then based on those changes the matlab code is to proceed
here is what I did:
- Print out those plots
- put out a message dialog box asking user if they are ready to proceed with the code
- if input == yes in the dialog box --- proceed with the code
Here is the problem:
Once the dialog box is opened by matlab then I am unable to look at my plots as the message box is persistant and stays on top of all the plots until I either close it or enter the input.
This is a problem because i need to be able to look at these plots and dont want to close the box.
Is there a way of making this box non persistent?? or what are my other option ??
PS
I tried putting in a pause(30)
30 second pause after printing the plots and putting up the dialogue box. The problem is that I need variable amount of time to fix my circuit. Sometimes 10 seconds - sometimes 5 minutes. So pause solutions isn't very effective