I have a matlab timer object. It is updating a global variable FOO once per second.
I have a matlab GUIDE GUI, with a couple of controls, and a single plot frame. The plot frame gets updated by some of the GUI controls, and it gets updated by the timer object.
Basically, there are two global variable FOO and BAR. The timer updates FOO, the GUI controls updates BAR. updates to either FOO or BAR need to update the GUI.
How to do this?
Thanks John