필터 지우기
필터 지우기

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

조회 수: 3 (최근 30일)
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.

답변 (1개)

Image Analyst
Image Analyst 2014년 6월 11일
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
Luis Camilo
Luis Camilo 2014년 6월 11일
I need show all the process that the command window have when I run the interface, it's possible ?
Image Analyst
Image Analyst 2014년 6월 11일
Try putting this line in early in your program, like in the OpeningFcn:
echo on;

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by