How to open several GUIs one at a time in a matlab script?

1 次查看(过去 30 天)
I have 4 GUI tasks, Task A, Task B, Task C, and Task D, and would like users to complete 4 tasks one by one. If I write in the script:
Task A;
Task B;
Task C;
Task D;
then all 4 GUI tasks pop out at the same time.
How can I let Task B only pop out after the user closes Task A or is done with Task A? There are 10 problems in each task and I coded tasks to be autoamically closed after users finish 10 problems.
I want to randomize the order of 4 tasks for each participant, which means Task A could be followed by any task, therefore, I can't hard code Task A to automatically trigger Task B.
Thanks so much!
  3 个评论
Adam
Adam 2019-10-31
Or create a vector of function handles to each of your GUIs, e.g.
guis = { @TaskA, @TaskB, @TaskC, @TaskD,... };
Then you can use e.g.
doc randperm
to get a random permutation of indices into that vector and launch the relevant GUI as
guis{ idx }( )
As for the problem of all UIs opening at once, Rik's answer should sort that out.
Adam Danz
Adam Danz 2019-10-31
编辑:Adam Danz 2019-11-4
To add to these other great solutions, you could also toggle the visibility of your GUI figures on/off as needed. That way when you're ready to move on to the next GUI, it's already generated and you just need to make it visible.

请先登录,再进行评论。

采纳的回答

Rik
Rik 2019-10-31
As long as your GUI functions return a handle to the figure, you can use the uiwait function to get the behavior you want.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by