execute cell content as lines of command in Matlab
조회 수: 5 (최근 30일)
표시 이전 댓글
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
DGM
2022년 1월 28일
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.
답변 (1개)
Yongjian Feng
2022년 1월 29일
Try this first from matlab command line window:
pe = pyenv
This will tell you what python env is used by your matlab installation.
참고 항목
카테고리
Help Center 및 File Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!