If it is possible to display matlab's command window in app designer's text area?

43 views (last 30 days)
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
DGM
DGM on 19 Dec 2021
Why is it necessary to dump serial data to the console instead of storing it? Is that simply the behavior of some pre-existing tool, or is the code within your control?

Sign in to comment.

Answers (1)

Jan
Jan on 19 Dec 2021
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.

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!