Run MATLAB executable from Python

11 Ansichten (letzte 30 Tage)
Deepa Maheshvare M.
Deepa Maheshvare M. am 21 Dez. 2022
Kommentiert: Al Danial am 29 Dez. 2022
Hi All,
I have an executable file (main.exe) which reads user-input from input.ini and also uses the other files below.
In MATLAB's command prompt, I run the executable like this
!main
I am not sure how to run this file from Python.
Suggestions will be of great help.
  3 Kommentare
Deepa Maheshvare M.
Deepa Maheshvare M. am 21 Dez. 2022
Bearbeitet: Deepa Maheshvare M. am 21 Dez. 2022
I tried,
exe_str = r"C:/Windows/System32/cmd I:/sim/main/main.exe"
process = subprocess.Popen(exe_str, stderr=subprocess.PIPE, creationflags=0x08000000)
process.wait()
but the output file has not been saved to the output folder. There is no issue while running the !main i.e output file is created.
Al Danial
Al Danial am 29 Dez. 2022
Try it like this:
import subprocess
exe_str = "I:/sim/main/main.exe"
result = subprocess.run(exe_str, capture_output=True, text=True)
print("STDOUT=", result.stdout) # optional
print("STDERR=", result.stderr) # optional

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Call Python from MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by