transplant icon indicating copy to clipboard operation
transplant copied to clipboard

Transplant is an easy way of calling Matlab from Python

Results 20 transplant issues
Sort by recently updated
recently updated
newest added

I get an error when I execute the following code on ubuntu, what should I do? ``` import transplant import sys import numpy as np sys.setrecursionlimit(30000) matlab = transplant.Matlab(jvm=False, desktop=False)...

after running this `transplant.Matlab()` error comes up ``` Traceback (most recent call last): File "", line 1, in File "c:\program files\python37\lib\site-packages\transplant\transplant_master.py", line 542, in __init__ msgformat, zmq_address, self._locate_libzmq() File "c:\program...

Traceback (most recent call last): File "mainwindow.py", line 40, in matlab = transplant.Matlab(jvm=False) File "transplant\transplant_master.py", line 542, in __init__ File "transplant\transplant_master.py", line 711, in _locate_libzmq RuntimeError: could not locate libzmq...

Hi, I cannot set attributes if the class does not import mixin. The following matlab TestObject is in a @TestObject folder and TestObject.m file. I can create an instance of...

wondering whether it would be hard to support octave, given that oct2py does not seem to be developed anymore (last release was ~2 years ago)

I have a long running loop in python calling a Matlab codes that takes 2-3 minutes to execute. After about 20 of those loops, the whole thing just hangs. Matlab...

when I input the following codes: import transplant matlab=transplant.Matlab() the errror happened: RecursionError: maximum recursion depth exceeded in __instancecheck__ Traceback (most recent call last): File "", line 1, in File...

How do I get the output from a script similar to [this](https://www.mathworks.com/help/matlab/matlab_external/call-user-script-and-function-from-python.html), which uses the Matlab Engine? I would also be helpful if I can understand how to change the...

I am a little bit confused about how to use `transplant.Matlab` I want to pass a python function and several other parameters to a matlab function, for example `matlab.fminsearch`. So...