How to make a script return an output argument in python?

19 ビュー (過去 30 日間)
yashvin
yashvin 2015 年 7 月 29 日
回答済み: Robert Snoeberger 2015 年 7 月 29 日
Hi I have linked python to matlab. I am running a script written in MATLAB in python. I am using as reference
I want my script to return the variable in my python window. How i can do it? Can i avoid this without converting it to a function?
b = 5;
h = 3;
a = 0.5*(b.* h)
import matlab.engine
eng = matlab.engine.start_matlab()
eng.triarea(nargout=0)
  1 件のコメント
yashvin
yashvin 2015 年 7 月 29 日
After you save the file, start Python and call the script.
import matlab.engine
eng = matlab.engine.start_matlab()
eng.triarea(nargout=0)
a =
7.5000
Specify nargout=0. Although the script prints output, it returns no output arguments to Python.
Convert the script to a function and call the function from the engine. Open the MATLAB editor to edit the file.
eng.edit('triarea',nargout=0)
I want for example return the variable a in my python window! How can i do that?

サインインしてコメントする。

採用された回答

Robert Snoeberger
Robert Snoeberger 2015 年 7 月 29 日
Scripts do not return output arguments, but they do store results in variables in the base workspace [1]. You can access the MATLAB engine workspace from Python [2].
Example
>>> import matlab.engine
>>> eng = matlab.engine.start_matlab()
>>> eng.triarea(nargout=0)
a =
7.5000
>>> a = eng.workspace['a'] # get the variable 'a' from the workspace
>>> a
7.5
>>>
References

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCall MATLAB from Python についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by