답변 있음
`parfor` doesn't seem to work with Python lists
If you are using a |parpool|, then |parfor| needs to save and load the Python list. Saving (serializing) Python objects into a M...

7년 초과 전 | 1

| 수락됨

답변 있음
A simple python script testmodel.py which is written response=raw_input(), but It can not be called successfully in Matlab
There are two parts to my answer: 1) When you see the error "Undefined variable 'py' or class 'py.testmodel.response'", call ...

7년 초과 전 | 1

답변 있음
Matlab 2016a crashed by calling python function
Is there a file "pyvenv.cfg" in either of the following locations? * c:\users\<username>\appdata\local\enthought\canopy\user\...

7년 초과 전 | 0

답변 있음
when I run a python module which imports ssl.py , error occurs . but it's ok to run the straight python.
Your issue looks like a library conflict with MATLAB's version of libssl, based on the part of the error message that says, "Exp...

거의 8년 전 | 0

| 수락됨

답변 있음
Python is not loaded for an engine mode MATLAB session
Does this help? import sys eng.pyversion(sys.executable, nargout=0)

거의 8년 전 | 1

| 수락됨

답변 있음
.Net Object not displaying properties or methods
Based on the result of |color.Classes|, the class name is |EvolutionMaps.ColorMap|. The correct way to call properties is, ...

거의 8년 전 | 0

답변 있음
How to pass the variables from matlab workspace to python function, and run this python function in matlab
>> mod = py.importlib.import_module('f'); >> py.setattr(mod, 'x', 1); >> py.setattr(mod, 'y', 2); >> py.f.f an...

대략 8년 전 | 0

| 수락됨

답변 있음
Python language in Matlab "No appropriate method, property, or field"
What type of attribute is 'GetFromStudyCase'? Is it an instance method, static method, etc? One way to check is to look at the d...

대략 8년 전 | 1

| 수락됨

답변 있음
Matlab's python engine crashes minidom
matlab.engine uses libexpat.so shipped with MATLAB. It seems that the version shipped with MATLAB is an older version of the li...

대략 8년 전 | 1

답변 있음
Importing custom python module fails
Based on the stack trace, your issue looks like a library conflict with libhdf5.so. It seems like the libhdf5 that is in the sta...

대략 8년 전 | 2

| 수락됨

답변 있음
How to save numerical data into excel from Google maps API run in MATLAB.
Use webread instead of urlread. It will parse the JSON response for you. Then, you can gather the distance and duration data t...

8년 초과 전 | 2

| 수락됨

답변 있음
error output from python matlab engine
You could get the last uncaught exception [1] and then call getReport [2] to get the error message for that exception. Exampl...

8년 초과 전 | 0

답변 있음
why do I receive an empty document [#document: null] when I read a xml file with xmlread?
I'm not sure why you think that you received an empty document. The display that you are seeing, [#document: null], consists ...

8년 초과 전 | 14

| 수락됨

답변 있음
How i can add a List to the JSON POST request with webwrite (required for RESTful interface of Neo4j)
To create a JSON Array, you should use a cell array. However, you should be careful when passing a |cell array| as a value input...

8년 초과 전 | 0

| 수락됨

답변 있음
Webwrite not encoding JSON the way I want
>> options = weboptions('MediaType','application/json','RequestMethod','post'); >> data.type='Polygon'; >> data.coordina...

8년 초과 전 | 0

| 수락됨

답변 있음
I want to be able to retreive data from an actxserver API
It looks like |APIGetExtract| is not the correct name of the method. You should see the documentation about getting method infor...

8년 초과 전 | 0

| 수락됨

답변 있음
Python in Matlab: accessing list of lists
"Python Objects: Indexing Support" is listed in the R2015a release notes [1]. Which version of MATLAB are you using? In the a...

8년 초과 전 | 0

| 수락됨

답변 있음
How can I read a text file into a list?
You can read into a cell array: >> data = fileread('file_name'); >> x = strsplit(data); >> x{1} ans = A...

8년 초과 전 | 3

| 수락됨

답변 있음
Downloading Data off a URL and specifying what portion of the URL to save.
As Tim Jackman correctly pointed out, webread is designed for RESTful web services. Consuming an API provided by a web service w...

8년 초과 전 | 0

답변 있음
Using MATLAB python engine and returning multiple matrices
Use the |nargout| keyword argument [1]. R, P = eng.corrcoef(rndArray, nargout=2) [1] <http://www.mathworks.com/help/matl...

8년 초과 전 | 2

| 수락됨

답변 있음
python list extension with scalars
You could pass a cell array. a_py = py.list(num2cell(a))

8년 초과 전 | 1

| 수락됨

답변 있음
Matlab won't run python
If pyversion returns |''|, then MATLAB doesn't know where to find your Python installation. You should call pyversion with the p...

8년 초과 전 | 2

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

8년 초과 전

답변 있음
JSON vs. XML using webread()
The JSON text received from the web service contains the UTF-8 byte order mark (BOM), , at the beginning [1]. The BOM is caus...

8년 초과 전 | 3

| 수락됨

답변 있음
How to make a script return an output argument in python?
Scripts do not return output arguments, but they do store results in variables in the base workspace [1]. You can access the MAT...

8년 초과 전 | 4

| 수락됨

답변 있음
error while executing py.textwrap.wrap(T)
Are you using 64-bit MATLAB? If so, did you check if both MATLAB and Python are 64-bit?

거의 9년 전 | 0

답변 있음
Error when calling python module from MATLAB
Did you do anything to change MATLAB's search path? To solve this problem you need to make sure the MATLAB package |python.in...

거의 9년 전 | 0

| 수락됨

답변 있음
Python and MATLAB in the socket
Example Connect to Python echo server from MATLAB. The echo server code is given as an example in the Python socket documenta...

거의 9년 전 | 1

답변 있음
Calling third-party Python modules installed with homebrew from Matlab?
Use the import_module function from importlib when you want more information about an import failure. If import fails, then you ...

거의 9년 전 | 0

| 수락됨

답변 있음
engSetVisible when starting Matlab Engine from Python
According to the documentation, you can start matlab with the "-desktop" startup option. See the "Start Engine with Startup Opti...

거의 9년 전 | 0

| 수락됨

더 보기