Unrecognized function or variable "Run Python script file from MATLAB"
24 ビュー (過去 30 日間)
古いコメントを表示
Divyesh pandav
2021 年 12 月 1 日
コメント済み: Julius Muschaweck
2021 年 12 月 2 日
i use this exmple
Create Python script addac.py
def add(a,c):
b = a+c
return b
z = add(x,y)
.when use this scripts in MATLAB its showing error Unrecognized function
pyrunfile("addac.py","z",x=3,y=2)
Unrecognized function or variable 'pyrunfile'.
0 件のコメント
採用された回答
Julius Muschaweck
2021 年 12 月 1 日
In my Matlab 2021a, I get the same error message.
In the online documentation, it says "Introduced in R2021b". It seems you're using an earlier version than the brand new R2021b.
2 件のコメント
Julius Muschaweck
2021 年 12 月 2 日
This function (pyrunfile) is not present in Matlab 2021a.
This help page:
shows how to call user-defined python modules from Matlab R2021a
その他の回答 (0 件)
参考
カテゴリ
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!