Answered
Is it possible to compile C# code in Matlab?
Hi, yes C# is Windows only. So it won't run on Linux. But there are some Linux clones available: <http://en.wikipedia.org/...

14 years ago | 0

| accepted

Answered
MATLAB Builder EX not available on mac?
Hi, of course it is not available, since Builder EX is available for windows only. It doesnt make sense to have Builder EX on...

14 years ago | 3

| accepted

Answered
point in convex hull?
Hi, I would use convhull and inpolygon: xx = -1:.05:1; yy = abs(sqrt(xx)); [x,y] = pol2cart(xx,yy); k = convhull(x...

14 years ago | 1

| accepted

Answered
can i purchase a matlab licence as a private individual - not industry/academia/etc?
Hi, this is possible. Simply click on the contact sales button on the MathWorks website. So go here: <http://www.mathwo...

14 years ago | 1

Answered
MCR compatibility
Hi, are you looking for this: <http://www.mathworks.com/support/solutions/en/data/1-4GSNCF/index.html>

14 years ago | 0

| accepted

Answered
Matlab m file into ocx file.
Hi, you wont be able to create an OCX file out of your MATLAB code. I guess you want OCX to embed a MATLAB figure or your...

14 years ago | 1

| accepted

Answered
Increasing virtual memory for JVM in MCR. plzz help!
Hi, This is basically an out of memory error thrown by the JVM. You can either lower the heap space of the JVM, or move to a ...

14 years ago | 1

| accepted

Answered
Neural Networks Functions Convert to C++ codes
Hi, the MATLAB Coder won't help you here since the Neual Network Toolbox is not supported for code generation: <http://www...

14 years ago | 0

| accepted

Answered
Transpose a matrix when using eval
Hi, you can do it like this: eval('ARp0(1,:)= autoreg(var1_0(1, :)'',pl, 1);') Or use the transpose function: e...

14 years ago | 2

| accepted

Answered
problems declaring static in Mex?
Hi, your code looks pretty bad. Here is one way to do it: #include "mex.h" static double *t = NULL; static int...

14 years ago | 0

| accepted

Answered
How can I test a successful installation of MATLAB?
Hi again, you can also check if you are able to checkout the licenses you want: lm_list = feature('lmfeaturelist') ...

14 years ago | 1

Answered
How can I test a successful installation of MATLAB?
Hi, I would say, check if a specific compiler is installed correctly, or check which compilers MATLAB find and can use (Windo...

14 years ago | 1

Answered
Using "If Warning" as a conditional statement
Hi, you can use lastwarn to get the last warning: [warnmsg, msgid] = lastwarn And than you can compare the msgid fr...

14 years ago | 0

| accepted

Answered
Array of int at the output of a mex file
The following code runs fine (not sure what the expected output is but it seems good): #include <stdio.h> #include <math...

14 years ago | 0

| accepted

Answered
matlab compactibilty
Hi, the data type you use to pass the matrix down to the ML function is wrong. I think the function signature must be: p...

14 years ago | 0

| accepted

Answered
Decompilation of an .exe file(built by Matlab)
Hi, MATLAB Compiler decrypts the m files binary style. There is no program available which decodes your m files so that you c...

14 years ago | 3

Answered
errors disappear when I reboot Matlab
Hi, try a clear classes after you modified your class.

14 years ago | 1

| accepted

Answered
how to register dll file in matlab donet builder
Hi, you don't need the MCR. See here: <http://www.mathworks.de/help/toolbox/dotnetbuilder/ug/bqey2vo-1.html> Do this fo...

14 years ago | 0

| accepted

Answered
weird behaviour of textscan
Hi, I would rather say that sscanf behaves weired. The textscan does it correct: <http://www.mathworks.com/help/techdoc/ma...

14 years ago | 0

Answered
Using daq functions on Matlab 64bit R2012a
Hi, thats the legacy interface and that doesnt work on 64bit. You have to use the session based interface instead: <http:/...

14 years ago | 0

| accepted

Answered
Multiply each element of a vector with a matrix
Hi, try kron and reshape: B = [1 2; 3 4] A = 1:5 reshape(kron(A,B),[size(B),numel(A)])

14 years ago | 1

Answered
Idle labs on Parallel Computing Toolbox
Hi, Does Matlab reserve his parallel workers even when idle? Yes, when you open a matlabpool of 12 labs, the others have...

14 years ago | 1

| accepted

Answered
MATLAB appcrash when I use mxFree in S-Function
Hi, please do not use mxfree and other mx* memory functions: <http://www.mathworks.com/support/solutions/en/data/1-5RMJID/...

14 years ago | 1

| accepted

Answered
How to create Contents.m from command window
Hi, to start the report: runreport('contentsrpt') To create the contents.m file: makecontentsfile Both comm...

14 years ago | 2

| accepted

Answered
How to make the surface plot transparent??
Hi, use the alpha property: hold on surf(peaks(30)) alpha 0.5 plot3(10,10,10,'r*') hold off

14 years ago | 6

| accepted

Answered
Select Cell Range in Excel ActiveX
Hi, as far as I know there is no function for that in EXCEL. You have to get it yourself with the Adress property of the Cell...

14 years ago | 2

| accepted

Answered
How to automatically run a matlab function at a particular time every day?
Hi, in the case you are running Windows you can schedule a windows task: <http://support.microsoft.com/kb/308569/en-us> ...

14 years ago | 2

| accepted

Answered
How can I add drop-down list in excel file using matlab
Hi, Create a Macro, look at the source code, look at the Microsoft documention, implement it in MATLAB: VBA: With S...

14 years ago | 2

| accepted

Answered
How to plot the data i.e. in form of vectors?
Hi, a small example would be: x1 = [ 4 3 2 1] x2 = [1 2 3 4] [newx1, id] = sort(x1) newx2 = x2(id)

14 years ago | 1

| accepted

Answered
mclIsMCRInitialized crashes if mclInitializeApplication not yet called
Hi, the problem here is that the proxy library has not been initialized. To initialize these libraries call: mclmcrIniti...

14 years ago | 0

Load more