So Currently I have a code that is producing some variables in the Matlab workspace, which is fine and dandy, but I was wondering if there was a way to get these results to be displayed in a popup GUI? I know i can create a GUI that displays options for input, but i just wanted to know if there’s a way to do output as well. thanks
currently I’m going at this in an undirect way
tap_total = evalin( 'base', 'tap_total' );
streaking = evalin( 'base', 'streaking' );
menu('Max Banding and Streaking',max(tap_total),max(streaking))
this is popping the results up in a menu for me, but a standard text box would work better.
You can do
to display a message. Is that what you’re after?