MATLAB: Is there a way to use the system () call using ‘&’ while still be able to suppress the DOS cmd window

MATLABsystem

Hi folks. I need to make system calls to a routine from inside Matlab, and have control return after the routine starts rather than returning after the routine completes. Using the trailing ampersand accomplished that, but I also do not want those little DOS cmd windows to appear. Any way for that to happen? Thanks!

Best Answer

See this thread: CLICK HERE.
Otherwise the only way might be to replicate all the functions that the system does in your MATLAB code.
Related Question