java - Running matlab in background with an interface -
i have matlab script , build interface using other programming language, user enter 2 numbers using interface , chose operation wants perform, want matlab run , perform operation on input user input , give output of operation on interface not want build gui using matlab since want use program in devices not have matlab ( i'll using matlab running engine ) there anyway can using c++, python or java ?
a matlab command can executed in background following line:
matlab -nosplash -nodisplay -nodesktop -minimize -r "run [your_script_path]; exit"
with configuration, can run script without display , console closed. however, option has opening/closing time overhead , 2 more feasible options can be:
- using scripting language light weight python
or
- implementing gui directly in matlab.
Comments
Post a Comment