Respondida
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/...

casi 14 años hace | 0

| aceptada

Respondida
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...

casi 14 años hace | 3

| aceptada

Respondida
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...

alrededor de 14 años hace | 1

| aceptada

Respondida
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...

alrededor de 14 años hace | 1

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

alrededor de 14 años hace | 0

| aceptada

Respondida
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...

alrededor de 14 años hace | 1

| aceptada

Respondida
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 ...

alrededor de 14 años hace | 1

| aceptada

Respondida
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...

alrededor de 14 años hace | 0

| aceptada

Respondida
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...

alrededor de 14 años hace | 2

| aceptada

Respondida
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...

alrededor de 14 años hace | 0

| aceptada

Respondida
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') ...

alrededor de 14 años hace | 1

Respondida
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...

alrededor de 14 años hace | 1

Respondida
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...

alrededor de 14 años hace | 0

| aceptada

Respondida
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...

alrededor de 14 años hace | 0

| aceptada

Respondida
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...

alrededor de 14 años hace | 0

| aceptada

Respondida
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...

alrededor de 14 años hace | 3

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

alrededor de 14 años hace | 1

| aceptada

Respondida
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...

alrededor de 14 años hace | 0

| aceptada

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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:/...

alrededor de 14 años hace | 0

| aceptada

Respondida
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)])

alrededor de 14 años hace | 1

Respondida
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...

alrededor de 14 años hace | 1

| aceptada

Respondida
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/...

alrededor de 14 años hace | 1

| aceptada

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

alrededor de 14 años hace | 2

| aceptada

Respondida
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

alrededor de 14 años hace | 6

| aceptada

Respondida
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...

alrededor de 14 años hace | 2

| aceptada

Respondida
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> ...

alrededor de 14 años hace | 2

| aceptada

Respondida
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...

alrededor de 14 años hace | 2

| aceptada

Respondida
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)

alrededor de 14 años hace | 1

| aceptada

Respondida
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...

alrededor de 14 años hace | 0

Cargar más