How to embed a command prompt into an mlapp?

5 visualizaciones (últimos 30 días)
Dominik Mattioli
Dominik Mattioli el 4 de Oct. de 2020
Comentada: Walter Roberson el 5 de Oct. de 2020
I'd like to embed a command prompt into an mlapp. Basically, recreate the Command Window within my own custom mlapp. I would like the usr to receive instructions and notifications within this console, and I am also using a tcp connection to run a python script so it would be nice to not have a separate windows popping up for all of these interactions.
Would this require some significant MATLAB-java backend programming? Or is there a built-in functionality with the 2020b AppDesigner?
  5 comentarios
Mario Malic
Mario Malic el 5 de Oct. de 2020
Editada: Mario Malic el 5 de Oct. de 2020
I would be also interested in this. As an alternative to see the outputs from the command window, I use diary and fread in combination with Text area with turned off ability to edit.
If you run MATLAB through actxserver, new instance opens, with only a command line,
Matlab_COM = actxserver('Matlab.Application')
It would be great if it would be possible to attach it to current running instance of MATLAB, but I wouldn't know if it can be done, or if it's possible.
Matlab_COM.Execute("a = 'this is cool'");
% In this separate instance
» a
a =
'this is cool'
Walter Roberson
Walter Roberson el 5 de Oct. de 2020
Compiled would be a problem. Compiled does not have access to evaluating user input as commands.
Compiled does not stop you from defining a command language and parsing it and having a data structure that you use to chain together pieces. On the other hand, the more flexible you make that command language, the more you would have to worry about being in violation of the license agreement.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Deploy to C++ Applications Using mwArray API (C++03) en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by