Matlab engine for python with shared session
35 ビュー (過去 30 日間)
表示 古いコメント
Hello,
I want to run multiple matlab engines for python at the beginning of my application, because the library I developed embeds many large functions that have to be loaded at the beginning of the app. This is well described in the documentation:
# initialization
engines = []
# load engines
for i in range(3):
engines.append(matlab.engine.start_matlab())
# use one engine
result = engines[1].MyFunction(arg1,arg2)
I also found in the documentation the possibility to use shared matlab sessions:
matlab.engine.shareEngine('MATLABEngineName')
engine = matlab.engine.connect_matlab('MATLABEngineName')
What is this?! There is no information about these shared sessions.
Does it allow to simultaneously run multiple functions in the same engine? What about the execution times (for comparable configurations between shared and classic sessions)?
Thanks
0 件のコメント
回答 (1 件)
Bo Li
2016 年 9 月 29 日
You can send multiple requests to the same engine, they will be queued up and executed one by one. To run multiple functions simultaneously, you may start multiple MATLAB through matlab.engine.start_matlab in Python, or launch multiple shared MATLAB session and connect to them using matlab.engine.connect_matlab. There is no difference between a shared and classic session regarding the performance of running a MATLAB function.
Following MATLAB command can be used to share a MATLAB session:
>>matlab.engine.shareEngine
Or you can launch a MATLAB session as shared from system prompt using "-r" argument:
%matlab -r matlab.engine.shareEngine
Reference:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Call Python from MATLAB についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!