Distribute Matlab functions without source

I wrote a set of Matlab functions and I want to distribute it to several people for testing. But I do not want to reveal to them the source. All these people install matalb on their systems. Therefore, I do not want to make stand-alone executables from my functions. Ideally, I want something like library files that users can put in the matlab path and call functions from their matlab prompt / matlab functions. Is it possible?

Edit: I have a Matlab compiler toolkit. But users will not have access to the Matlab compiler toolbar in their language.

+4
source share
1 answer

The standard way is used by pcode . Take a look at the docs and remember to save a copy of the source code elsewhere!

+7
source

Source: https://habr.com/ru/post/1394682/


All Articles