execute cell content as lines of command in Matlab

6 Ansichten (letzte 30 Tage)
Hamid
Hamid am 26 Jan. 2022
Kommentiert: Hamid am 3 Feb. 2022
I have a cell that cintains execution command such as
A{1} = python run_my_code -m var1="1" var2 ="2"
A{2} = python run_my_code -m var1="2" var2 ="4"
...
When I use system(A{1}) it gives me sytax error.
The idea is to run all cell contetnts in a for loop within matlab.
Any help is appreciated
  3 Kommentare
Hamid
Hamid am 28 Jan. 2022
I should have mentioned that var=1,2 are the predefined arugments of my Python code. I can run the exat line of code (e.g., python run_my_code -m var1="2" var2 ="4") in the terminal but when I use system(python run_my_code -m var1="2" var2 ="4") it give me the syntax error. The madules that my Python code uses is in an specific conda environment and perhaps system command does not recognize this.
DGM
DGM am 28 Jan. 2022
I am not familiar with python, but if the errors are with python instead of matlab, then environment configuration sounds like something worth looking into.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Yongjian Feng
Yongjian Feng am 29 Jan. 2022
Try this first from matlab command line window:
pe = pyenv
This will tell you what python env is used by your matlab installation.
  1 Kommentar
Hamid
Hamid am 3 Feb. 2022
Thanks for the suggestion Yongjian Feng. I found setting the conda environment difficult for different operating systems as I am working withing different platforms. The easiest way for me was to set the environment in Terminal.
  1. 'conda activate envx'
  2. bring up Matlab from terminal (instead of shortcut)
  3. run the matlab script within which the system(A{1}) is set to call and run Python.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Call Python from MATLAB 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!

Translated by