MATLAB: Is it possible to call MATLAB from Perl

MATLAB

I want to call MATLAB files from a Perl program and pass data back and forth.
My Perl scripts run on multiple platforms.

Best Answer

There is no specific MATLAB interface which can be called from Perl.
There are several options to work around this issue although each has its limitations. One is to use the ActiveX interface on Windows, another is to launch MATLAB from a Perl script with the -r options to call an MATLAB file. For more information on each of these workarounds, see the related solutions below.