Technical discussion about Matlab and issues related to Digital Signal Processing.
I would like to know can we generate executable file in MATLAB, like we do in VC++ and other languages. I want to get a release version of my software in MATLAB. Please help.
Sure, You need the "matlab compiler" and you are all set. You can produce exe, dlls, java packages .... On Wed, Apr 23, 2008 at 2:13 AM, solankiraghav <s...@yahoo.co.in> wrote: > I would like to know can we generate executable file in MATLAB, like > we do in VC++ and other languages. I want to get a release version of > my software in MATLAB. Please help. >
Hi, You can do that either from command prompt or from GUI (which I prefer). 1- From command prompt the command is mcc which has a whole bunch of options here: http://www.mathworks.com/access/helpdesk/help/toolbox/compiler/index.html?/access/helpdesk/help /toolbox/compiler/f0-985134.html&http://www.google.com/search?hl=en&q=mcc+matlab&aq =f For an example see this video (very short and shows you an mcc use for deploying a matlab GUI): http://www.mathworks.com/products/demos/compiler/audio_analysis/Video2/Video2Sep20.html 2- From GUI: Go to File -> New -> Deploy (right under GUI): This is a perfect webinar, very short and to the point for GUI-based exe building ... http://www.mathworks.com/company/events/webinars/webinarconf.html?id=30804 Best regards, Raja' On Wed, Apr 23, 2008 at 3:39 PM, swathi prayaga <s...@yahoo.com> wrote: > please tell me how to generate .exe files using matlab..i've matlab > compiler with meee.. > thanx in advance > regards > Swathi > > *"Raja' S. Alomari" <r...@gmail.com>* wrote: > > Sure, You need the "matlab compiler" and you are all set. You can > produce exe, dlls, java packages .... > On Wed, Apr 23, 2008 at 2:13 AM, solankiraghav <s...@yahoo.co.in> > wrote: > > > I would like to know can we generate executable file in MATLAB, like > > we do in VC++ and other languages. I want to get a release version of > > my software in MATLAB. Please help. > > > > *Swathi* >
Its better you write code in C/C++ then generating code from Matlab. The matlab generated code is pretty slow Here is for your advice (1) If you need FFT use FFTW libraries for windows (2) If you need Matrix functions or complete matlab like functioanlity either use IT++ or VSIPL++ both are good and fast Regards Syed Moinuddin On Wed, Apr 23, 2008 at 7:13 AM, solankiraghav <s...@yahoo.co.in> wrote: > I would like to know can we generate executable file in MATLAB, like > we do in VC++ and other languages. I want to get a release version of > my software in MATLAB. Please help. >