Returning output argument from standalone executable

3 vues (au cours des 30 derniers jours)
Rashmi Murthy
Rashmi Murthy le 7 Avr 2016
Réponse apportée : Antti le 26 Jan 2018
I am calling a matlab executable by providing input arguments from the python script. Will Matlab Executable return the output argument back to python after completing execution?
This is the illustration of how I am calling the function python script
os.system('run_matlabcode.sh /usr/local/MATLAB/MATLAB_Compiler_Runtime/v83/ 1000 1100')
The Matlab code named matlabcode.m which is converted to a standalone executable should have an output count
function count=cellcount(frame1,frame2)
How can I return the value of 'count' back to the python program? Please help!
~Rashmi

Réponses (1)

Antti
Antti le 26 Jan 2018
Instead of a standalone executable, you should use a python library compiled with MATLAB Compiler SDK. It allows you to call MATLAB functions from Python, and transfer inputs and outputs more easily. See Compiler SDK documentation. If you cannot use compiled Python libraries, then I think the only option is to have the MATLAB executable write the output to a file, and have the Python application read the results from the file.

Catégories

En savoir plus sur Python Package Integration dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by