How can I run commands in the background from MATLAB with Windows?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
MathWorks Support Team
am 27 Jun. 2009
Bearbeitet: MathWorks Support Team
am 20 Mai 2021
I would like to run a MATLAB script in batch mode in the background. If I use "!" or SYSTEM or DOS to start MATLAB, it does not return until the script has completed.
Akzeptierte Antwort
MathWorks Support Team
am 24 Jun. 2021
Bearbeitet: MathWorks Support Team
am 20 Mai 2021
You can run any command in the background by using a BAT-file which contains the command you would like to run. For example, if you want to start MATLAB in the background and run a command, you can create the following BAT-file:
@echo off
matlab -automation -r "surf(peaks); pause(5); quit" > matlab_output.log
exit
Then, inside MATLAB, the following command will run the script in the background:
!start "MATLAB test" /Min /B test_bat.bat
The syntax for the START command is explained in the following website:
Attached is an example BAT-file: "test_bat.bat".
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Functions finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!