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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 3

| akzeptiert

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

etwa 14 Jahre vor | 1

| akzeptiert

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

etwa 14 Jahre vor | 1

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 1

| akzeptiert

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

etwa 14 Jahre vor | 1

| akzeptiert

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 2

| akzeptiert

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 1

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

etwa 14 Jahre vor | 1

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 3

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

etwa 14 Jahre vor | 1

| akzeptiert

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 1

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

etwa 14 Jahre vor | 1

| akzeptiert

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

etwa 14 Jahre vor | 1

| akzeptiert

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

etwa 14 Jahre vor | 2

| akzeptiert

Beantwortet
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

etwa 14 Jahre vor | 6

| akzeptiert

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

etwa 14 Jahre vor | 2

| akzeptiert

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

etwa 14 Jahre vor | 2

| akzeptiert

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

etwa 14 Jahre vor | 2

| akzeptiert

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

etwa 14 Jahre vor | 1

| akzeptiert

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

etwa 14 Jahre vor | 0

Mehr laden