- First, convert your MATLAB session to a shared session by executing the below command in MATLAB
Accessing a running MATLAB object from Python
31 ビュー (過去 30 日間)
古いコメントを表示
I have a MATLAB class that runs some hardware. I use it as an API by other code in order to build small MATLAB applications. I have some users who want some of the functionality available in Python. It's quite a lot of work to redo everything in Python (there is also a GUI) so I'm looking into the possibility of making the API available in Python somehow.
Here is what I'm looking to do: I want to instantiate my class in MATLAB and have the user set everything up. I'm then wondering if it's possible for Python to somehow access this workspace and run methods of the instantiated object. It seem unlclear me, though, if the if matlab.engine can do that. Does anyone know?
If that is not possible, what might be a good alternative? Maybe through TCP IP if I write a suitable server/client system? I've not done that before, though, and don't know where to start.
Any other options?
0 件のコメント
採用された回答
Vijay
2022 年 12 月 26 日
Hello @Rob Campbell
Yes, you can connect from python to a running instance of MATLAB and execute commands and access workspace variables.
Follow below steps
matlab.engine.shareEngine
2. connect to the shared MATLAB session by connect_matlab function from python API
Example:
import matlab.engine
eng = matlab.engine.connect_matlab()
eng.sqrt(4.0)
You can use eng.eval function to execute any commands in MATLAB.
Please refer to the following link for more information Connect Python to Running MATLAB Session - MATLAB & Simulink - MathWorks India.
Hope that helps!
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Call MATLAB from Python についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!