Tagged Questions
mcc stand for MATLAB® Compilerâ„¢. The command line utility that can compile MATLAB code into stand-alone application or C/C++ library.
8
votes
15answers
741 views
Why are some functions extremely long? (ideas needed for an academic research!)
I am writing a small academic research project about extremely long functions. Obviously, I am not looking for examples for bad programming, but for examples of 100, 200 and 600 lines long functions ...
3
votes
3answers
632 views
Matlab deployment: add files to source control?
I've created a deployment project which works rather well and now I want to add it to source control repository for others to use.
The main problem I'm facing is that the .prj file which deploytool ...
3
votes
2answers
584 views
How to extract a single function from a source file
I'm working on a small academic research about extremely long and complicated functions in the Linux kernel. I'm trying to figure out if there is a good reason to write 600 or 800 lines-long ...
2
votes
1answer
297 views
The mcc compiler “Depfun error” when building dll with .NET-dependencies and Enumerations That Encapsulate Data
I ran into problems in MATLAB R2010b when creating a DLL that uses .NET-integration and enumerations with encapsulate data.
Example:
There is a .NET Assembly which is used in MATLAB, let's call it ...
2
votes
5answers
206 views
Can this kernel function be more readable? (Ideas needed for an academic research!)
Following my previous question regarding the rationale behind extremely long functions, I would like to present a specific question regarding a piece of code I am studying for my research. It's a ...
1
vote
3answers
164 views
I have trouble using mcc compiler in MATLAB (Error using ==> mcc The output directory does not exist)
I'm trying to build the .NET assembly file by executing this code in matlab2010b
workdir = 'C:\Users\H\Documents\Source Code\MatlabFiles';
outdir = fullfile(workdir, 'Output');
dnetdir = ...
1
vote
5answers
425 views
matlab shared c++ libraries and OpenCL
I have a project that requires lots of image processing and wanted to add GPU support to speed things up.
I was wondering if i compiled my matlab into c++ shared library and called it from within ...
1
vote
2answers
4k views
How do I change the Mobile Country Code (MCC) in the Android Emulator?
My Android application needs to react differently to different Mobile Country Codes.
It seems like it is hardcoded to mcc310 (US). I can read this value from TelephonyManager.getSimCountryIso() or ...
0
votes
2answers
541 views
error while compiling Matlab mex file on Ubuntu 11.04 with Matlab R2011a
I am trying to compile a shared library which will call MATLAB function on Ubuntu 11.04. Like the command:
mcc - B cpplib:libStepCluster StepCluster.m
Get the following error.
...
0
votes
1answer
38 views
why this warning comes in making stand-alone .exe from my .m & .fig file ?
see i have one .m file & .fig file for gui feature associated with that .m file now for making standalone .exe file for that .m file
i am using
mcc -m -mv jig322.m jig322.fig
after doing ...
0
votes
2answers
574 views
How to compile matlab script for specified Matlab Runtime (MCR)
I have Matlab 2010a installed on my machine, and MCR 7.6 installed on client's machine.
I try to figure out how can I compile my code for MCR 7.6.
Currently mcc comlipes scripts for 7.9 ( which has ...
0
votes
3answers
221 views
MATLAB arbitrary code execution
I am writing an automatic grader program under linux. There are several graders written in MATLAB, so I want to tie them all together and let students run a program to do an assignment, and have them ...