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

42 visualizzazioni (ultimi 30 giorni)
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 Commenti
DGM
DGM il 19 Dic 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?

Accedi per commentare.

Risposte (1)

Jan
Jan il 19 Dic 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.

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by