Community Profile

photo

Bo Li

Last seen: 4개월 전 2014년부터 활동

Followers: 0   Following: 0

연락

통계

  • 12 Month Streak
  • Revival Level 1
  • Knowledgeable Level 4
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Weird behaviour of py.importlib when using "InProcess" ExecutionMode
It appears that "third_part_library" happens to use the Python multiprocessing package. In such case, the Python module creates ...

1년 초과 전 | 0

답변 있음
How to execute Python script inside a Matlab '' for loop ''?
Hopefully I understand the question correctly. I wonder you can create a Python function in a Python file mymodule.py to wrap y...

대략 4년 전 | 1

답변 있음
Proper importing of MATLAB structures into Python
Would you share more details about how the file "lib.mat" is created? I tried following steps: >>lib.name='hello' >>Str...

대략 6년 전 | 0

답변 있음
I am confused on 'Slicing MATLAB arrays behaves differently from slicing a Python list. Slicing a MATLAB array returns a view instead of a shallow copy.', when I learned how to use Matlab.engine in python.
This is indeed confusing. The change is made in place, that's why A[0] becomes [2,2]. To elaborate the behavior, here is how A...

6년 초과 전 | 0

답변 있음
how to read 'categorical' values from 'mxArray'?
You can’t create categorical arrays with mxArray API, as there is no categorical in the mxClassID: <https://www.mathworks.com...

6년 초과 전 | 0

답변 있음
MATLAB Engine API for Python: changing parameters of the running simulation
This looks related how you run the simulation. Instead of running "sim", you may use set_parm to star the simulation like follo...

6년 초과 전 | 1

답변 있음
How can python reach the input of a Matlab GUI?
Do you work in MATLAB environment or Python environment? In either case, you probably can log the input of a MATLAB GUI in the c...

대략 7년 전 | 0

답변 있음
Running matlab python interface in Jupyter Notebook throws weird error
Probably the version of Jupyter uses an older version of GCC. You may consider forcing Jupyter to use MATLAB version of GCC run...

대략 7년 전 | 1

| 수락됨

답변 있음
Unable to run EngineGUIDemo in Java Engine
Adding "<matlabroot>/bin/win64" to the system environment variable PATH is required, otherwise, Java doesn't know where to find ...

대략 7년 전 | 1

답변 있음
Problems with MATLAB Engine API for Java
With a simple test "example.java" like this: import com.mathworks.engine.*; public class CNN { public static...

대략 7년 전 | 0

답변 있음
Does Java Matlab Engine API have a Javadoc?
The Java Doc needs to be generated from source code, sounds like an enhancement to TMW.

대략 7년 전 | 0

답변 있음
Can I make a call to a third party Matlab function while using the Matlab Engine API along with Java?
Did you add "apowb" to the MATLAB path? You can do that using addpath either in MATLAB or through feval in Java. The M file ne...

대략 7년 전 | 0

답변 있음
Matlab Java Engine API error
This looks like an Eclipse issue. The example code should just compile if you ignore the hints.

대략 7년 전 | 0

답변 있음
Python3: Conflict between matlab.engine and opencv2
Regarding this workflow: >>> import matlab.engine >>> import cv2 It looks that there is a newer version of libstdc++....

대략 7년 전 | 0

| 수락됨

답변 있음
How can I automatically put the password of my account when using a python engine?
What password are you referring to in your question? Is it password used to launch MATLAB? In that case, do you need to type t...

대략 7년 전 | 0

답변 있음
Call poly2trellis in Python
You need to use mlArray in order to pass an array to MATLAB from Python. A Python list is converted into a MATLAB Cell array wh...

대략 7년 전 | 0

| 수락됨

답변 있음
Call poly2trellis in Python
How about trying following: >>>eng.get_trellis(7.0) It looks that the poly2trellis expects the first argument to be a do...

대략 7년 전 | 0

답변 있음
In the Python API, how can I redirect the output of an asynchronous function call of a function without return value?
What about adding "ret.result()" before printing the output buffer like following? while not ret.done() : pass ret.result(...

대략 7년 전 | 0

| 수락됨

답변 있음
Python API: how to get the output?
When "async" is set to true, the result along with the output/error are not available until "future.result" is called. How abou...

대략 7년 전 | 0

| 수락됨

답변 있음
Error Installing MATLAB engine API for Python
On Windows, you may need to run the prompt as administrator in order to write to protected folders even if you have administrato...

대략 7년 전 | 15

| 수락됨

답변 있음
Return multiple variables from MATLAB to Python
Apparently, "nargout" is a keyword argument defined for Python Engine. "dp.getTestingData(True, nargout=3)" does not work becau...

대략 7년 전 | 0

| 수락됨

답변 있음
Calling Script from python
I can reproduce your error message with following steps: >>> import matlab.engine >>> eng=matlab.engine.start_matlab("-n...

대략 7년 전 | 1

답변 있음
how do i access data from .db files in mysql lite 3 format available on my local storage ?
MATLAB has Database Toolbox to query SQLite database: <http://www.mathworks.com/help/database/ug/sqlite.html>

대략 7년 전 | 0

답변 있음
Is it possible to import and use third party matlab functions/packages in python?
It looks that "api.Plex4.createExplicitSimplexStream()" is a Java API and it works when it is called by Python Engine as part of...

7년 초과 전 | 0

답변 있음
Unable to use Python matlab.engine in a Docker container
Does MATLAB itself run with the Docker container, for example: matlab -nodesktop -r 'disp hello; exit'

7년 초과 전 | 0

답변 있음
What does MATLAB python engine fail to load from within Spyder or after certain other modules loaded?
Looks like conflict of libraries, maybe running Python with verbose mode (python -vvv) can provide more details.

7년 초과 전 | 0

답변 있음
Accessing matlab object properties from Python
I can think of following three approaches: # eng.getfield(tr, 'Base'). This getfield function is designed for structure, and...

7년 초과 전 | 1

| 수락됨

답변 있음
problems with code call from python
Would float work for you? import matlab.engine eng = matlab.engine.start_matlab() b = float(input("dimmi la base: "))...

7년 초과 전 | 0

답변 있음
Cannot import matlab.engine without environment error [Ubuntu 14.04/Anaconda]
It looks like a compatibility issue of ICU. You may use the verbose mode "python -vvv" to find more details about what is going...

7년 초과 전 | 0

답변 있음
What is the "primary message table for module 77"?
You may try to create a dummy Engine object using engOpen and keep it alive until the end of the application. Meanwhile, you ca...

7년 초과 전 | 0

| 수락됨

더 보기