Malab Python problem -- isloaded set to 0

18 ビュー (過去 30 日間)
Mahesh
Mahesh 2014 年 10 月 21 日
編集済み: Robert Snoeberger 2014 年 10 月 24 日
Hi,
I have downloaded the newest Matlab (R2014b) and am trying to call a Python script from my Matlab script. When I run "pyversion" I get this output:
version: '2.7'
executable: '/Applications/anaconda/bin/python2.7'
library: '/Applications/anaconda/lib/libpython2.7.dylib'
home: '/Applications/anaconda'
isloaded: 0
Why is "isloaded" equal to 0, why isn't it loading? I'm not sure how to fix this issue.

採用された回答

Robert Snoeberger
Robert Snoeberger 2014 年 10 月 22 日
編集済み: Robert Snoeberger 2014 年 10 月 24 日
The output from "pyversion" looks reasonable. You don't need to explicitly load Python. It will load when it is needed, which is the first time you access the "py" package. Have you tried the example in the documentation?
When MATLAB is started pyversion returns 0 (false) for isloaded. You may still change the version of Python while isloaded is 0 (false). See pyversion documentation. Python loads dynamically upon the first usage of the “py” package. If isloaded is 0 (false) but you believe it should be 1 (true), then see the trouble shooting documentation.
  2 件のコメント
Mahesh
Mahesh 2014 年 10 月 22 日
Yeah, it seems to be working okay now, thanks!
I have a few other issues however.
When I try to run a python function from my matlab console, I get:
>> py.regression_tests.regression_test Undefined variable "py" or function "py.regression_tests.regression_test".
>> py.regression_tests.regression_test() Undefined variable "py" or class "py.regression_tests.regression_test".
my regression_test function takes in some parameters, but I have seen matlab give an error of "invalid number of errors", and am not getting that here. It does not seem to be find the file for some reason. I am in the directory where the Python script lives.
I also have a short matlab script that I have written which lives in the same directory as the Python script. Here, I create some of the parameters needed for Python, then run the python function. I get this error:
>> regression_tests_python Undefined variable "py" or class "py.regression_tests.regression_test".
Error in regression_tests_python (line 14) coeff_list = py.regression_tests.regression_test(X, row, column, y, test, 0.1);
These errors look like the same issue, it can't find my Python script. How do I fix this?
Robert Snoeberger
Robert Snoeberger 2014 年 10 月 22 日
If you are in the directory where the Python script lives, then you probably need to add the current folder to the Python path. See the example in the documentation:

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

その他の回答 (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