답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 3

| 수락됨

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 1

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

14년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 2

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 3

답변 있음
errors disappear when I reboot Matlab
Hi, try a clear classes after you modified your class.

14년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 2

| 수락됨

답변 있음
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년 초과 전 | 6

| 수락됨

답변 있음
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년 초과 전 | 2

| 수락됨

답변 있음
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년 초과 전 | 2

| 수락됨

답변 있음
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년 초과 전 | 2

| 수락됨

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 0

더 보기