フィルターのクリア

Calling python special methods from matlab

6 ビュー (過去 30 日間)
Marco Halder
Marco Halder 2018 年 8 月 1 日
コメント済み: Marco Halder 2018 年 8 月 13 日
In python, it is not uncommon to have methods or constants with a single or double underscore such as
__VERSION__
__len__()
Trying to access these from matlab via for example
py.numpy.__version__
results in the following error:
Error: The input character is not valid in MATLAB statements or expressions.
Is there a reliable way to call these variables or functions?

採用された回答

Rachana Reddy Mamilla
Rachana Reddy Mamilla 2018 年 8 月 13 日
Hello Marco, There are some features of python which are not supported by MATLAB .One of which includes the inability to access Class names or other identifiers starting with an underscore (_) character. Instead, use the Python py.getattr and py.setattr functions. Hope this link helps.
  1 件のコメント
Marco Halder
Marco Halder 2018 年 8 月 13 日
Thank you.

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by