execute cell content as lines of command in Matlab
1 次查看(过去 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!