Réponse apportée
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/...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 3

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 1

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

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
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 ...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 2

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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') ...

environ 14 ans il y a | 1

Réponse apportée
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...

environ 14 ans il y a | 1

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 3

Réponse apportée
errors disappear when I reboot Matlab
Hi, try a clear classes after you modified your class.

environ 14 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 0

Réponse apportée
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:/...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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)])

environ 14 ans il y a | 1

Réponse apportée
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...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
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/...

environ 14 ans il y a | 1

| A accepté

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

environ 14 ans il y a | 2

| A accepté

Réponse apportée
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

environ 14 ans il y a | 6

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 2

| A accepté

Réponse apportée
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> ...

environ 14 ans il y a | 2

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 2

| A accepté

Réponse apportée
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)

environ 14 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 0

Charger plus