I use MATLAB 2012a. I need to compile a mex file in my program. Everything works fine with Microsoft SDK 7.1 but I need a minor compiler in order to work my program in other computers. Suggested compilers on MathWorks website are compilers that need to be installed as packages. Is there any compilers that work stand-alone and don't need to be installed?
1
There are 1 best solutions below
Related Questions in MATLAB
- How to open and read video stream in Matlab
- Interpolation and replace zeroes
- How can I fix my code to do line by line conditional statements in Matlab
- matlab crash during acquisition of pointgrey images
- Calling text file
- Apply gaussian filter on text
- re-plotting of data on same GUI axes in matlab
- Issue with nume1 in MATLAB
- Multiply two variables in Matlab with vpa - high precision
- ODE - Solving Parameter Dependent on Variable [Matlab]
- Need help in detecting multiple blobs
- How does TIC TOC in matlab work?
- Image based steganography that survives resizing?
- lowering computaional cost in finding the location of minimum distance
- FFT Filtering of signal
Related Questions in MEX
- Mex compiled function, used to compute set intersection and difference, keeps crashing
- level 2 c-mex function input return wrong value
- Matlab 2011b - Error using mex
- How Do I use Mexcallmatlab to Call a User-defined function?
- How to Code max(abs) in MATLAB
- Matlab Crahes upon fopen in Mex File
- segfault in matrix inversion using LAPACK in mex
- Compiling libraries with MEX in MATLAB
- free() and mxFree() in MATLAB - freeing memory twice
- Matlab C-based Mex file with sockets not running
- "mexFunction is missing" Error while obtaining sizes from MEX S-Function in Matlab
- Calling MATLAB m-file and mex-file with same name from same directory
- Seems to be a lot of syntax errors in .h files that are within Eigenvalues directory of Eigen library?
- Why arraysize is identified as zero in my mex code?
- why am I getting the error "Invalid MEX-file", while the file is in the current folder?
Related Questions in MATLAB-COMPILER
- Solving ring laser equations in MATLAB using ode
- Can I call Python from Matlab and generate C code for it?
- Matlab Runtime does not free memory after shut down
- Creating user interface for ZORK style game in MATLAB
- Persian font encoding in m-files on Matlab
- How can we debug our matlab-made DLL used in a C++ app?
- How to work with a simulink model without matlab?
- MATLAB Compiler
- How to compile by MCC when the source has levels of folders?
- How to specify output type in MATLAB when using calllib
- How to generate .NET DLL Library from Simulink and Stateflow
- Matlab Application Compiler omits function call
- debug code in standalone matlab
- Mexopencv mex file not found
- call matlab dll from c++: fail to initialize the library
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can use MinGW, but it is not straightforward. See this Q&A. The accepted answer suggest to compile and link MEX files outside of MATLAB, which is fine, but it's simple to just create mexopts.bat to do this.
A good mexopts.bat for MING is hosted here. Pick a MINGW distribution from win-builds and set the paths in mexopts. Then you can use
mex -setupwith this file.gnumex is a disaster, IMO.