Tagged Questions

MATLAB is a high-level language and programming environment developed by MathWorks. This tag relates to the deployment of MATLAB algorithms and applications, including integration of MATLAB code with other languages such as C/C++, .NET and Java, and use of add-on products such as MATLAB Compiler, MATLAB Builder NE for .NET, MATLAB Builder JA for Java and MATLAB Builder EX for Excel.

learn more… | top users | synonyms

14
votes
8answers
5k views

Interoperating between Matlab and C#

After peeking around the internet it looks like it is possible to interop between C# and Matlab. I am wondering if anyone has had success with it and what they did to do so. If possible somehow ...
7
votes
5answers
2k views

License to Distribute Matlab code

After writing the code in Matlab, is it possible to compile it into libraries and distribute them to customers who don't have matlab without installing the whole Matlab program? What is the license ...
5
votes
2answers
273 views

How to access a matlab function from java code?

My java program uses matlab code packaged as jar files for image processing. The problem is when I call a function(written by me) with a call to 'mmreader' for the first time, it works fine. However ...
5
votes
3answers
2k views

How can i pass command line arguments to a standalone MATLAB executable running on linux/unix?

How can i pass command line arguments to a standalone MATLAB executable running on Linux/UNIX? I need to compile my MATLAB script as a standalone file that can be run on a machine without matlab ...
4
votes
3answers
1k views

How to call MATLAB code from C?

I have some code that plots triangles in MATLAB. I need to be able to somehow execute this code from my C program which generates these points. Is that possible? How can it be done? Just a thought: ...
3
votes
1answer
152 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
2answers
82 views

Can Flex 4 or Actionscript access shared C or C++ library?

I'm having a Flex4/Actionscript application developed for access in a web browser. I need it to perform some math involving imaginary numbers (e.g. sqrt(-1)). I don't believe either Flex or ...
3
votes
0answers
77 views

Install* MCR without Administrator rights

SOME INFORMATION: I want compile some GUI into windows standalone application (*exe). The main idea is run my applications in different computers WITHOUT the necessity of privileges to run it. ...
3
votes
2answers
503 views

C# & MATLAB interoperability for non-matrix datatypes

I'm writing a C# program that needs to call MATLAB processing routines. I've been looking at MATLAB's COM interface. Unfortunately, the COM interface appears to be rather limited in terms of the ...
3
votes
3answers
633 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 ...
2
votes
1answer
45 views

Integrate MATLAB code in Visual Studio 2010 (C++)

I've seen that it is possible to call MATLAB functions from VS2010 (VC++). I was wondering if it is possible to create executable files using VC++ that do not require any MATLAB software on the ...
2
votes
2answers
57 views

how to run matlab code on android device?

is there a way to run M-Files on an Android Smartphone? There is the JAVA Builder in Matlab, which can create Java classes from the M-Files. But it requires a MatlabRunTime to be installed on the ...
2
votes
1answer
42 views

Call MATLAB method compiled to .NET assembly from C#

I've created a script file in MATLAB R2010a with the following code. I compiled it into a .NET assembly (.dll file). MATLAB script: function res=Moshtagh(f) res=diff(f); end This works ok in ...
2
votes
1answer
50 views

How can I use Matlab objects in compiled .NET assemblies?

I have a basic Matlab class which I want to instantiate in C#. classdef MyClass properties Value end methods function obj=MyClass(v) obj.Value = v; ...
2
votes
2answers
77 views

How can I make the Matlab Compiler run faster?

How can I make the Matlab Compiler run faster? It takes ages for it to make a sensible program. I am currently using Microsoft Visual C++ 2008 SP1 in c:\Program Files (x86)\Microsoft Visual Studio ...
2
votes
1answer
289 views

Creating a graph or a plot from a C# console app, using Matlab?

If I have a two dimensional array in C#, how would I plot the contents of this array in Matlab, as a 2-D graph? I'm after an extension method, i.e. my2DArray.PlotInMatlab();
2
votes
2answers
139 views

How to convert MATLAB .m file into c file?

How to convert matlab .m file to c file. I have written a code in matlab regarding image processing and now i want to convert the code in to c file.can any one help on this?
2
votes
1answer
53 views

Create a static lib from matlab code

I'm already aware that you can create a stand alone executable and a shared lib from matlab. However, it would be better for our configuration management process (version and distribution) to use a ...
2
votes
2answers
72 views

Can VS 2010 Setup Include MCR as prerequisite?

I have a project that I'm trying to build an installer for using a Visual Studio setup project. I'm wondering if there is a way to get the MatLab Compiler Runtime included as a prerequisite. Right now ...
2
votes
1answer
287 views

How to call a user defined Matlab from Java using matlabcontrol.jar

I am trying to call a user defined Matlab Function(M file) which takes 3 arguments(Java Strings) from my Java application which is developed in Eclipse. At the moment I am able to call proxy.eval and ...
2
votes
1answer
260 views

Matlab and Java integration

I have done image processing in MATLAB and build my GUI in Java. I want to integrate MATLAB into Java. I want to use MATLAB Builder for this purpose. I want also to use neural network for ...
2
votes
1answer
477 views

How to Call Matlab Functions from C++

I want to call MATLAB function in my C++ project. i'm using Matlab R2010a and Visual Studio 2010 first i created a simple matlab function function y = foo(x) y = x+1; and then i used matlab ...
2
votes
2answers
178 views

Compiled Matlab function works only once

I have a Matlab function compiled into C library. I am using this library from C# application. If I call my function in C library for the first time, everything works fine, but the second call causes ...
2
votes
1answer
90 views

Rogue 40-second wait when loading a Matlab assembly … how to diagnose the cause?

I've got a very odd problem: I've compiled some Matlab code into an assembly. I instantiate the class with the following C# line: MatPhiLib temp = new MatPhiLib(); // This line takes 40 seconds to ...
2
votes
1answer
126 views

Extracting CellArray values into java datatype

I'm doing matlab java interfacing using javabuilder. In my matlab code, the function returns a cellarray which is to be casted to java datatype. The value cellarray is retrieved into MWArray. But ...
2
votes
1answer
372 views

MCR and .NET incompatibility

I am trying to compile a Matlab (R2010b) application that uses a .NET module, but I am facing a problem with incompatibility between the MCR and the .NET module: The .NET module is compiled with ...
2
votes
1answer
321 views

MATLAB Builder JA dependency

I try to run MATLAB code in Java with MATLAB Builder JA to get the JAR file. test.m works fine, but not the test2.m that depends on test.m. I need the dependency for my project, how to set it up? ...
2
votes
1answer
597 views

Can we deploy the matlab generated java code on any other machine which is not having Matlab?

I have generated a java code from matlab and while executing the java code in Eclipse it is using mclmcrrt711.dll file in matlab compiler runtime, when i try to execute the java code in another ...
2
votes
1answer
649 views

matlab to c++: Cannot open include file: 'mclmcrrt.h': No such file or directory

We tried to complie the m file to c++ file by matlab complier. We had the file bulit but we got the error msg as follow. fatal error C1083: Cannot open include file: 'mclmcrrt.h': No such file or ...
2
votes
1answer
210 views

Does Matlab MCR has MultiCore Support?

My .Net application is making use of Matlab Component Runtime (MCR) for some heavy number crunching libraries. One thing that I wonder is that, can the MCR take advantage of the multicore feature of ...
2
votes
3answers
438 views

Creating a standalone app from Matlab code

I have some Matlab code and a GUI for it and I want to make a standalone .exe so that it can be used on computers that don't have Matlab installed. I know about the Matlab compiler and how to use it, ...
2
votes
1answer
1k views

Sliding window algorithm for activiting recognition MATLAB

I want to write a sliding window algorithm for use in activity recognition. The training data is <1xN> so I'm thinking I just need to take (say window_size=3) the window_size of data and train ...
1
vote
1answer
47 views

Run m-files Inside Java

I have a matlab function written in an m-file. (it's not written by me and seems a complex algorithm) Now I want to use it with a java application. I searched in internet and learned how to run matlab ...
1
vote
1answer
38 views

Not reproducable exe hang of Matlab Compiler output executable

I have the following problem: I have a Matlab program in form of some set of *.m files. It is later compiled into executable and used. The problem is that occasionally the resulted executable just ...
1
vote
1answer
193 views

Unable to register dll using regsvr32:The module “*.dll” failed to load

There is a similar question from stackoverflow. But I didn't find that the answer is helpful. I also used Google searched the websites, I have watched here and here. I have tried the method they told ...
1
vote
1answer
83 views

Can you use MATLAB Builder JA to create Java objects from MATLAB objects

I'm trying to do a proof of concept with MATLAB objects. I want to see if you can use MATLAB objects like the one below in Java code. We need the MATLAB objects to keep state. I've used MATLAB Builder ...
1
vote
1answer
46 views

Matlab deployment with financial toolbox?

I am compiling a matlab code to exe and it has the uicalendar function in it. I did put the main app as my main .m file and in the setting I checked the financial toolbox. The file compiled ...
1
vote
1answer
162 views

Is it possible to run matlab on a remote server and control it using the matlab GUI from a thinclient?

Akin to what can be done with emacs with slime: the core services can run on a performace grade remote computer while I can edit and run code from emacs gui on an netbook. Me and my colleagues often ...
1
vote
2answers
75 views

MATLAB: Verify if a SSH tunnel to AWS is open.

I'm using MATLAB to connect to a database hosted in AWS (using the database toolbox). In order to do that, I supply the URL of the database as a local port and create a SSH tunnel to the AWS host. ...
1
vote
2answers
273 views

Passing a .NET Datatable to MATLAB

I'm building an interface layer for a Matlab component which is used to analyse data maintained by a separate .NET application which I am also building. I'm trying to serialise a .NET datatable as a ...
1
vote
1answer
157 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
vote
3answers
332 views

build a standalone application from Matlab code

I have some Matlab code and a GUI for it and I want to make a standalone app to Protect my Source Code. How can I build this standalone? Thank you for any guide. ...
1
vote
2answers
151 views

unable to load a DLL in MATLAB through Java

I am working on a Java GUI application that uses MATLAB code for calculations. However, the MATLAB code itself uses a DLL file. I packed all my MATLAB functions into a class and created a jar file. I ...
1
vote
2answers
457 views

Call Matlab function from C#

I developed a Matlab function, and I'm looking for a way to call that function from another C# application and pass some parameters to it and get the results in c# program. I heard that I can use ...
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
1answer
139 views

Matlab compiled to. NET - what about thread safety?

If I to call matlab function compiled by Builder NE in multi-threaded near real-time application, how should. I approach thread safety issue? Shall I create single instance of matlab object and ...
1
vote
0answers
223 views

MATLAB JA Builder throws NullPointerException in MCRConfiguration

I'm trying to execute a MATLAB function from Java using JA Builder. I followed the MATLAB JA Builder help documentation - the HelloWorld and MagicSquare examples and receive the following stack trace ...
1
vote
1answer
224 views

C# and Matlab 2010. Real-time events

I need to send some text information from C# to Matlab 2010. And then send some response from matlab to C# app. I have very little knowledge of Matlab so I will try no to get involved in the Matlab ...
1
vote
1answer
834 views

highlight a single cell in a table generated with Guide - Matlab

I'm trying to highlight or color the background of a single cell in a table generated with guide. is there a way to do this? thanks in advance.
1
vote
1answer
752 views

how to use tables in Matlab

I want to know please how can I fill in a table, row by row, by numbers, and then to color in each row the cell that has the higher number in it. I searched the web a little and found this ...

1 2 3