If it is possible to display matlab's command window in app designer's text area?
45 views (last 30 days)
Show older comments
Hi. I wonder if there is a possibility to display matlab's command window in app designer's text area. Im working with USRP B200 mini radio and i need to display command window's result in my app. This will allow the application to show the result of sending of receiving data. Without this, the application will be useless. I have no idea how to do this. Can you help me?
3 Comments
Answers (1)
Jan
on 19 Dec 2021
See: FEX: CmdWinTool
cmdWinDoc = com.mathworks.mde.cmdwin.CmdWinDocument.getInstance;
initial = cmdWinDoc.getLength;
% Run the external program:
sin(rand)
drawnow
Msg = char(cmdWinDoc.getText(initial, cmdWinDoc.getLength - initial));
Now insert Msg in the text field. This could be done by a timer also.
0 Comments
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!