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.
0 件のコメント
回答 (1 件)
  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 件のコメント
  Image Analyst
      
      
 2014 年 6 月 11 日
				Try putting this line in early in your program, like in the OpeningFcn:
echo on;
参考
カテゴリ
				Help Center および File Exchange で MATLAB Compiler についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

