Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
StevenG, you said 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
Did you consider using scilab.org ? – Basile Starynkevitch Jul 2 '12 at 5:08
1  
@NasserM.Abbasi: true, the MCR is just a headless MATLAB that interprets the code embedded in the deployed application, and runs at the same speed as a regular MATLAB session. – Amro Jul 2 '12 at 19:37

2 Answers

What you want to do, is called crosscompiling. Here you want from a Windows computer cross compile a Matlab program to a native Linux executable. As of 2009, this was not possible and most likely isn't now either.

share|improve this answer
Thank you for your reply but I am not looking to install MATLAB on linux. I am looking to compile a MATLAB program in Linux so that I can run the .exe file from the terminal as this produces output faster. – StevenG Jul 1 '12 at 23:49

Perhaps you might try using Octave for Linux enter link description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.