parallel execution of system command

14 views (last 30 days)
Is there a way to execute a system command (ie calling up a dos executable/bang operator) parallely. Within a for loop I'm calling up an exe file via system(). However it runs for few mins due to the interaction of internet. In windows its possible to open multiple sessions of dos and run executables. How can I get matlab to open multiple parallel dos sessions.

Accepted Answer

Rashmil Dahanayake
Rashmil Dahanayake on 15 Sep 2014
Edited: Rashmil Dahanayake on 16 Sep 2014
This can be achieved by invoking the command "start"
system('start myprog1');
system('start myprog2');

More Answers (0)

Categories

Find more on Programming 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!