After writing the code in Matlab, is it possible to compile it into libraries and distribute them to customers who don't have matlab without installing the whole Matlab program? What is the license governing the distribution of Matlab code?
|
|
|
|
|
|
|
According to Matlab Support:
-Adam |
||
|
|
|
|
Just note there are certain functions that will not work for compiled apps. "eval" is the obvious one (otherwise you could create your own MATLAB shell), however there are others. |
||
|
|
|
|
The application deployment products allow you to compile and distribute your M code in a variety of different ways: http://www.mathworks.com/applications/tech_computing/description/progapp.html The MATLAB Compiler allows you to redistribute your application or library royalty free. You will need to distribute the MATLAB Compiler Runtime with your target component. This is provided with the Compiler product. |
||
|
|
|
|
You can compile matlab code into a stand-alone executable. What you get is the matlab interpreter and your functions wrapped into an executable program. You would not get any speedup though, since your matlab code would still be interpreted. As far as I know, there should not be any licensing issues with Mathworks here, since your customers would not be able to add or modify any matlab code inside this executable. |
||
|
|
|
|
From what I've learned at a recent Matlab training session, you can build your Matlab code into an exe, and distribute that along with the necessary library for free. But you should check with a Matlab representative to make sure, and verify the legal implications. |
||
|
|
