Reputation: 13933
I have MATLAB installed on my Windows PC. What I want is to export some MATLAB code to a Linux server that don't have MATLAB installed. I would like to call that MATLAB code from my Python code. I can install MATLAB runtime on Linux system if that don't require a License. Please help!
Upvotes: 0
Views: 108
Reputation: 54718
Matlab has to be purchased. There is an open-source package called Octave that is a very close to Matlab, at https://www.gnu.org/software/octave/index.
However, the Python numpy
and scipy
modules essentially implement everything that's in Matlab, often with the same spellings. If your Matlab code is not thousands of lines long, you might be better served by recoding it as Python code using numpy
and scipy
.
Upvotes: 1