I am looking to compile a .m file (program) from MATLAB to Linux. I have done it on Windows operating system using
mcc -mv FILENAME.m
I see on the MATLAB website that I can use GNU g++.
Does this work in a similar way to the MATLAB compiler by just writing one line of code in MATLAB or do I have to run it in the Linux terminal?
Also, does this compiler tend to have issues regarding getting the desired output?
so that I can run the .exe file from the terminal as this produces output faster. But compiling in Matlab does not mean compiling to machine language, even though the file is called .exe (in windows). The code is still interpreted. (I've read some say it can be little slower actually). All what compiling does is allow the code to be run (or deployed) on different computers that do NOT have Matlab installed on (but one still need the run-time DLL's (MCR) on there ). So if you need the compiler just for speed, then you do not need the compiler. see Mathworks compiler page. – Nasser Jul 2 '12 at 1:56