How to display the Matlab command window data in GUI static text

Asked by akik biswas about 13 hours ago
Latest activity Answered by Walter Roberson about 10 hours ago

say I run a function which continuously displays data in the matlab command window. How do I display the command window values in static text in GUI???

2 Comments

Babak about 13 hours ago

you mean command window workspace variables? or commanded window's display (texts displayed in command window)

Jan Simon about 11 hours ago

Please explain more exactly, what you want to write to the text field.

akik biswas

Products

No products are associated with this question.

2 Answers

Answer by Yavor Kamer about 10 hours ago

You create a text box and then you update it like this

set(txt_handle,'string','blaaa')

0 Comments

Yavor Kamer
Answer by Walter Roberson about 10 hours ago

If your desire is to be running a function and, without changing the code the function uses to display values, you want to display copies of the command-line output in your GUI, then the only documented way for you to do that "on the fly" is to override the display(), fprintf(), and fwrite() routines to make them take copies as well as to do their intended work.

If you were using two different MATLAB sessions, and MATLAB R2012b or later, then you could use "diary" in one of the sessions before running the function, and then in the other MATLAB session be continually reading from the diary file and displaying it. "diary" does exist in earlier MATLAB, but the buffering of the output would make it not much "on the fly".

0 Comments

Walter Roberson

Contact us