0

I'm having this issue in my MATLAB program. I want to perform a set operation on my UI during a coding. In other words I'm pressing a button to launch my code and at the same time I want to change some uicontrols. I tried with pause and wait with no luck. I'm pretty sure that MATLAB gives priority to my coding part intead of the Java interface.

Anyone has any idea? Thanks

Nicholas
  • 1,915
  • 31
  • 55

1 Answers1

0

Thanks to nick I solved adding

waitnow; pause(.1);

Guys, unbelievable, that works on linux/OSX but not under windows..that's so weird

Nicholas
  • 1,915
  • 31
  • 55