MATLAB is a high-level language and programming environment developed by MathWorks. This tag relates to the generation of standalone executables and libraries from MATLAB algorithms using MATLAB Compiler, an add-on product to MATLAB. Consider also the tag matlab-deployment.

learn more… | top users | synonyms

2
votes
1answer
47 views

Mex or Compile (mcc) Matlab function that uses toolkits

Environment: Matlab R2012a (I have access to others if necessary) All Toolboxes/Compiler installed Ubuntu 12.04 64bit and/or Windows 7 64bit I am working with the source for a software package ...
0
votes
0answers
10 views

Problems creating a COM DLL in MATLAB

Following the docs here, I'm trying to create a COM DLL in MATLAB. I have the Matlab Compiler installed, and I've run mbuild -setup, using the Microsoft Visual Basic C++ 2010 compiler. My MATLAB ...
3
votes
3answers
99 views

How to initialize and load MCR

I incorporated C++ shared library generated from MATLAB in a Win32 console application. The MATLAB program takes 2-3 sec to execute in MATLAB but the console application takes 11-12 seconds to ...
0
votes
0answers
48 views

Compiling a Matlab-script with an allready compiled executable

I have compiled an executable from an .m-file. So far so good, but I want the executable to compile another .m-file itself with values that I got in the first .exe. Why I want to do this: I made GUI ...
0
votes
0answers
18 views

Visual C++ Runtime on Network Location

I have a MATLAB executable that I am trying to deploy within my company, but I don't want people to need to install a bunch of stuff. The executable is saved to a network location and I want them to ...
2
votes
2answers
87 views

Matlab exception while using C# wrapper

I've made a dll version of a clustering algorithm implemented in matlab Also, I've downloaded an working sample of the input data (I'm using the Toy Problem data) and I'm reading it and also ...
0
votes
0answers
64 views

MATLAB MCC “??? Error Using ==> mcc, return status = 1”

I'm trying to compile a matlab .m file on a linux cluster using mcc. R2008b is installed on the cluster. I am using http://www.it.northwestern.edu/research/sscc/matlabcompiler.html as a guide. My ...
0
votes
1answer
39 views

Play framework and WCF

I have 2 applications: a play application and a WCF .net application. The play application needs the robust calculation capability of the WCF application(it has a matlab compiler). I would like to ...
1
vote
2answers
121 views

How to compile Matlab class into C lib?

The origin of this question is from here How to use "global static" variable in matlab function called in c. I'm trying to encapsulate the "global variable" into an object. However I don't ...
2
votes
1answer
86 views

How to use “global static” variable in matlab function called in c

Hi I'm currently coding in MATLAB and C. I have compiled MATLAB functions into a C shared library using MATLAB Compiler (mcc), and called the functions in the shared library in a C++ program. Can a ...
1
vote
1answer
108 views

Calling Matlab Compiler from inside C# app throws exception

I found this code to invoke the Matlab compiler, it works fine when the function is called from Matlab command prompt, I build this function to .Net Assembly but whenever I try to use it in my C# app ...
0
votes
0answers
74 views

Compile custom made Toolbox with Matlab Compiler into Shared C++ Library

I am trying to compile the MIRtoolbox (http://bit.ly/cfwKFj) for Matlab into a C++ shared library so that I can use it in a C++ application I am working on at university. I am however having trouble ...
0
votes
0answers
111 views

matlab .exe files from .m file

i have created an .exe file from .m file. in target PC i have installed MCR. but some functions cannot be done like 'edge' functions. it say the following error : '???Invalid MEX-file ' ...
2
votes
1answer
372 views

Error: 'Subscript indices must either be real positive integers or logicals' when using Matlab .NET builder

I am using matlab NE builder to compile a dll file which I call from C#. The matlab code is confirmed to work in matlab, but when called from c# the following error occurs: An unhandled exception ...
6
votes
1answer
108 views

Matlab onCleanup with Compiled applications (windows)

I have an application made with matlab compiler. I want to do some shutdown activities whenever it ends. As it seems to be impossible to catch signals in matlab (or I'm not able to), I checked to use ...
4
votes
3answers
5k views

Can someone either point me to an online/free MATLAB compiler/interpreter or explain what happens in this MATLAB code?

I apologize in advance for this question. I don't like "explain this code" questions, but I can't find any documentation about my specific example. Background My issue is this. I am trying to ...
4
votes
1answer
273 views

Create a DLL from MATLAB

I have created a DLL in MATLAB which provides me an interface to my .m functions. Now I would like to use it with the MCR Runtime Library. (MCR = Matlab Compiler Runtime). I am calling this DLL from ...
0
votes
2answers
213 views

MCR Installation

So I have a MATLAB program that I made and compiled in Matlab R2011b. Now I want to distribute the compiled version. I understand the user will have to install MCR on their computers to run my ...
0
votes
1answer
138 views

Matlab m-file compilation

I need to conpile a matlab m-file , "file.m" . I also want to add some helper files and shared resources which are in folders c:\tt\folder1\ c:\tt\folder2\ I can easilty do this using the ...
1
vote
0answers
173 views

vbscript to check if Matlab Runtime Compiler is Installed

I need to write a vbscript to see if "Matlab Compier Runtime" is installed on the system. After searching the internet, I was able to put together the following code: Dim oShell Dim value On Error ...
1
vote
1answer
150 views

How does MATLAB compile a m file? [closed]

I am writing a MATLAB m file which looks like this: for k = 1:100 func_a(); func_b(); func_c(); end where func_a, func_b, and func_c are three different m files each has about 500 lines. Now, I ...
0
votes
1answer
792 views

/usr/bin/ld: cannot find -lstdc++

I'm following the Maltab Coder kalman tutorial in Matlab Help. When using codegen, there's an error as below: /usr/bin/ld: cannot find -lstdc++ collect2: ld returned 1 exit status But there ...
0
votes
0answers
196 views

Matlab GUI standalone application runtime error on 32-bit only

I have a matlab GUI application that I generate a standalone executable application from it for both [Windows 64-bit] and [Windows 32-bit]. The Windows 64-bit version of the standalone application ...
0
votes
1answer
129 views

error: unknown type name ‘mxArray’

When I try to use MATLAB mex command to compile a c file, I met the following error error: unknown type name ‘mxArray’ The error code is here const char *model_to_matlab_structure(mxArray ...
0
votes
0answers
111 views

running a DLL in maltab

So I have the following Matlab program function y = foo(x) y = 2*x; I am converting this program into a C dll using the "Lcc-win32 C 2.4.1" compiler. Now when I load dll library in matlab using ...
0
votes
1answer
44 views

Shifting control between compiled matlab code

So I have two pieces of compiled matlab code(in exe). I want the follwping behaviour: One exe file(exefile1) calls the other, using 'system('exefile2')'. The other file(exefile2) runs and after ...
4
votes
1answer
43 views

Determining whether file is compiled (in exe')or not in matlab

So I have a piece of MATLAB code which I am compiling in exe. This exe file is to be used by people who don't have MATLAB installed. But the original m file is also in use by some advanced users. ...
0
votes
1answer
172 views

mcc -B option with nojvm or optimization flag

I am using mcc compiler to generate C shared library as follows. I want to use the O3 option but can't use it directly. I tried all these options below: mcc -O3 -B csharedlib:libmyc foo.m mcc -R ...
1
vote
2answers
901 views

Matlab mbuild -setup compiler issue

I have Matlab 2010a, and I would like to compile my script to a stand alone windows .exe file. The issue is when I use mbuild -setup, there is no option for my Visual Studio 2010. I saw that there is ...
0
votes
1answer
261 views

Matlab compiled .exe cannot run with task scheduler but can run with double-click

I have a matlab compiled .exe file, it can run well with double-click, but when run with task scheduler, the following error pops out: while actually I have installed the 7.17 of MCR, otherwise it ...
1
vote
1answer
235 views

error: mclmcr.h: No such file or directory calling matlab function from C

I am trying to use Matlab user defined function from C++. I have created library using below command. mcc -B csharedlib:libMyLib myFunction.m It does not creates mclmcr.h and libmwmclmcrrt.so. I ...
1
vote
1answer
604 views

MATLAB compiler processes mcc.enc from unrelated toolboxes

I'm using mcc to compile my MATLAB project. The machine I'm using has many MATLAB toolboxes installed on it, but my code only requires a few (such as distcomp and images). However, whenever I run mcc, ...
-4
votes
2answers
631 views

MATLAB compiler for LINUX

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 ...
1
vote
1answer
285 views

I built a matlab code into a Java project, and now I am getting an error while running the java line of code that calls that matlab function

My matlab code does image processing, and I made matlab function which has 2 images as inputs. I wrote a separate java class to perform the imread function of matlab, i.e., to read the jpg images into ...
0
votes
1answer
259 views

Does java classpath settings in MATLAB MCR cross GLOBAL JAVA jobs?

I have a Java code to call two MATLAB jobs. The first job is to set the java class path by using javaaddpath to include the jdbc driver jar. The second job is to read data from database. The first job ...
1
vote
1answer
356 views

.net and matlab integration

I am just curious. What is the cheapest and most contemporary option to integrate matlab and .net. I believe there are other options than this: matlab netbuilder
1
vote
1answer
1k views

MCR libmwi18n.so file missing

I've just installed the Matlab MCR, and I tried to run a piece of code: ./run_test.sh /usr/local/MATLAB/MATLAB_Compiler_Runtime/ And I get this error in return: LD_LIBRARY_PATH is ...
1
vote
1answer
179 views

How to redirect the output of a compiled matlab script?

I have been given some matlab code compiled using the .net compiler. I can run it just fine from a console application, but if there are some warnings, they are printed in the command window. I ...
1
vote
2answers
743 views

Running Matlab MCR and MATLAB on the Same Machine

I'm having trouble getting a compiled .exe file to run with MCR instead of Matlab (I can tell because the program is using multiple threads, which it would not do if it were running with MCR). The ...
11
votes
2answers
598 views

Where can I find a formal grammar for Matlab?

I would like to write a lexer generator to convert a basic subset of the Matlab language to C#, C++, etc. To help me do this, I would like to find a document containing the formal grammar for matlab. ...
0
votes
1answer
88 views

Matlab coder - mex out of a function receiving 2 dimensional matrix of double - how to specify dynamic size?

My matlab function goes something like this: function out=func(M) for i=1:size(M,2) do something on M(:,i).. end How Can I tell matlab coder that parameter M is of dynamic ...
0
votes
1answer
366 views

Matlab code to .mex using code package

I would like to optimize a function written in Matlab by converting the code to C\C++. The result should be callable from within matlab, as it is a small part of a larger matlab code. For example, ...
0
votes
1answer
222 views

While compiling COM server with Matlab Builder NE, I keep on getting the error : “Description: MCR instance is not available”

I am trying to compile a COM object in Matlab 2011a using Matlab Builder NE. I managed to build and package it, deploy it, and even to start the COM server. I am using the following command in Matlab ...
4
votes
1answer
385 views

Matlab: How to survey compiled m-code progression from external API?

My question is extremely specific to the arcanes of the matlab compiler and runtime. As only people familiar with matlab runtime API may answer, I shortened much details. Please let me know if I ...
3
votes
3answers
5k views

Converting Matlab to C++

I need to convert some MATLAB code to C++. I am using Visual Studio 2010 and have MATLAB compiler installed. I am wondering how do I go about doing this. Also when I publish my project will the end ...
0
votes
1answer
54 views

uitable cannot be properly displayed after compilation

I have a uitable embedded in a GUI with cell structure, and it is editable. Everything works fine within Matlab environment, but after compilation, the uitable only displays blank. It is still ...
0
votes
1answer
618 views

biulding execute m-file + simulink model (I have a program with one error!)

I have been written a program with MATLAB: clear all; clc load data.dat a=data+2; b=fun(a); sim(‘new_equ2’) c=b+A; save new_data c -ascii --> my program has been saved by name “test.m” In ...
1
vote
3answers
2k 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
118 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 ...
1
vote
1answer
2k views

Running an .m file from a MATLAB-compiled function

Background Say I compile the following simple function in MATLAB function foo(path_to_m_file) disp([' Running ' path_to_m_file]) run(path_to_m_file); end The function foo just takes a path to ...

1 2