execute cell content as lines of command in Matlab

6 visualizaciones (últimos 30 días)
Hamid
Hamid el 26 de En. de 2022
Comentada: Hamid el 3 de Feb. de 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 comentarios
Hamid
Hamid el 28 de En. de 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 el 28 de En. de 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.

Iniciar sesión para comentar.

Respuestas (1)

Yongjian Feng
Yongjian Feng el 29 de En. de 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 comentario
Hamid
Hamid el 3 de Feb. de 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.

Iniciar sesión para comentar.

Categorías

Más información sobre Call Python from MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by