how can I show the command window and processes is running a GUIDE that is compiled in .exe?
    3 views (last 30 days)
  
       Show older comments
    
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 Comments
Answers (1)
  Image Analyst
      
      
 on 11 Jun 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 Comments
  Image Analyst
      
      
 on 11 Jun 2014
				Try putting this line in early in your program, like in the OpeningFcn:
echo on;
See Also
Categories
				Find more on MATLAB Compiler in Help Center and File Exchange
			
	Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
