execute cell content as lines of command in Matlab

8 views (last 30 days)
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 Comments
Hamid
Hamid on 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 on 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.

Sign in to comment.

Answers (1)

Yongjian Feng
Yongjian Feng on 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 Comment
Hamid
Hamid on 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.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!