Borrar filtros
Borrar filtros

how can I show the command window and processes is running a GUIDE that is compiled in .exe?

3 visualizaciones (últimos 30 días)
I have an interface that calls an executable and displays its run in the command window and I want to see him executed when the GUIDE is compiled (.exe)? Thanks.

Respuestas (1)

Image Analyst
Image Analyst el 11 de Jun. de 2014
You just print to the console window with fprintf:
fprintf('Now my program is running...\n');
Be sure you're not using the -e option to suppress display of the console window.
  2 comentarios
Luis Camilo
Luis Camilo el 11 de Jun. de 2014
I need show all the process that the command window have when I run the interface, it's possible ?
Image Analyst
Image Analyst el 11 de Jun. de 2014
Try putting this line in early in your program, like in the OpeningFcn:
echo on;

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by