Hello, Any solution to run Python files through Matlab simultaneously ?
5 ビュー (過去 30 日間)
古いコメントを表示
Hello, Any solution to run Python files through Matlab simultaneously ? I have developed neural network algo for my dataset classification in Python using Theano, and other libraries. But i have no time to translate all this in Matlab. I know this is possible, there exist alot of libraries (matconvnet). Help needed to run python files through Matlab. Matlab Engine API or any Solution? Or to run both simultaneously ? (E.g Lets say, Matlab sends data and Python process it and returns back to it Matlab ?) I have written Python code for my Novel Dataset classification and it classify my Data, and i want the result to be imported back in Matlab. Suggestions are appreciated.
0 件のコメント
採用された回答
Roman Müller-Hainbach
2016 年 10 月 4 日
On Unix-systems I use this approach:
Use the system()-command with something like this: 'python your_python_file.py &'. The '&' at the end makes this command finish immediately while your Python script runs in the background. You can start all your python runs through a loop.
You can then check for the results (which you will probably write into some files) and start processing them when they are present.
その他の回答 (1 件)
参考
カテゴリ
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!