I was wondering if there is a way to create a \'.exe\' file from \' .m\' file in MATLAB, such that it can be run in machine which does not have MATLAB (like it can be done
mcc -?
explains that the syntax to make *.exe (Standalone Application) with *.m is:
mcc -m
For example:
mcc -m file.m
will create file.exe in the curent directory.