From: andrea on
Hi,

in my MATLAB program I do a system call to run an exe-file.
This exe-file generate an output and the output has visualized on the MATLAB prompt.

Is it possible to visualize the output on the DOS prompt instead on the MATLAB prompt?

The MATLAB command system('start') allows me to open the DOS prompt but I don't know how to visualize the output.


Thanks for all

Andrea
From: dpb on
andrea wrote:
....

> in my MATLAB program I do a system call to run an exe-file.
> This exe-file generate an output and the output has visualized on the
> MATLAB prompt.
>
> Is it possible to visualize the output on the DOS prompt instead on the
> MATLAB prompt?
>
> The MATLAB command system('start') allows me to open the DOS prompt but
> I don't know how to visualize the output.
....

Add the contents of the command to run the external program to the Start
command and submit it.

Open a console session manually and type 'HELP START' to see format and
options available...

--