답변 있음
Error: cannot launch mupad process [vcam::new] on mupad in matlab
Hi, I think if you don't have write access to the directory 'PathToExampleDir' and you execute the command plot(plot::Func...

대략 15년 전 | 1

답변 있음
The Data Acquisition Toolbox does not recognize my PCI-DAC6703 board
You device is supported: <http://www.mathworks.com/products/daq/supportedio14004.html#PCI> and should work with Data Acquisiti...

대략 15년 전 | 2

답변 있음
Fsolve iteratively
I would change it to something like this: function q=eqns(z,a,b,c,d) %functions to solve y=z(2); x=z(1); q...

대략 15년 전 | 1

답변 있음
How can I divide an interval in intervals with the same length?
Hi, are you looking for something like this? start_interval = 0; end_interval = 10; intervals = 20; interv...

대략 15년 전 | 1

답변 있음
GUI
Hi, I think you are looking for the WindowButtonDownFcn and WindowButtonUpFcn. You can find an example called window_motion_t...

대략 15년 전 | 0

| 수락됨

답변 있음
Fsolve iteratively
Hi, I am not sure if I got it right but I think you are looking for the concept called Anonymous Functions. You can find an e...

대략 15년 전 | 1

답변 있음
Returning variables from a different form once the form closes
hi maybe have a look at this <http://blogs.mathworks.com/videos/2005/10/03/guide-video-part-two/>

대략 15년 전 | 1

답변 있음
delete contour lines
Hi, contourf(peaks(20),10,'edgecolor','none'); greetings

대략 15년 전 | 13

| 수락됨

답변 있음
Accessing and editing workspace values in matlab code
You code looks correct so far (little typo in the assignin command, it must be array instead of arraya). But I think this should...

대략 15년 전 | 1

| 수락됨

답변 있음
??? Output argument "feature" (and maybe others) not assigned during call to...
Hi, could you please post some code which forces this error? I could not reproduce this at all.

대략 15년 전 | 1

답변 있음
Please address my problem
Your function is not wrong. I think the problem is related to the way the function is called. The error indicates a call like ...

대략 15년 전 | 2

| 수락됨

답변 있음
Sine generation with variable frequency and amplitude
Hi, You get this error because sin(a) is a vector of size 1x30 and you want assign this to a single field k(i). Maybe give k ...

대략 15년 전 | 1

답변 있음
Accessing and editing workspace values in matlab code
I think what you are looking for is the evalin command. So something like evalin('base','a=3') Or if you really have to sear...

대략 15년 전 | 2

답변 있음
dividing row matrices to give row matrices
What are you trying to achieve exactly? It sounds like you are doing a/b or a\b which are totally different operations. a\b will...

대략 15년 전 | 1

| 수락됨

답변 있음
Excel automation and Matlab automation server
You can’t use the MCR as MATLAB Automation Server! This wouldn't make any sense since one wouldn't need to buy MATLAB any more!...

대략 15년 전 | 1

| 수락됨

답변 있음
Matlab builder NE problem
Which bitness has the .NET DLL you compiled? It must be a 32bit ML used to make a .NET DLL which can run on a 32bit System. Sin...

대략 15년 전 | 2

답변 있음
Matlab builder NE problem
Hi, the error looks related to this: <http://www.mathworks.com/support/solutions/en/data/1-DO0PLX/index.html>

대략 15년 전 | 2

| 수락됨

답변 있음
32-bit MEX file (Fortran) works correctly, the same 64-bit MEX file causes "Segmentation Fault"
You have to be carefull with simply recompile the Fortran code on 64bit. The FORTRAN pre-compiler interprets the mwPointer diffe...

대략 15년 전 | 1

답변 있음
modify the function addpath
Since the MATLAB Compiler adds the functions1 and function2 to the ctf achieve with the folder structure like in MATLAB you don’...

대략 15년 전 | 1

| 수락됨

답변 있음
Multiple Callback Functions
I think this is not possible without using some eval and feval command. I would suggest using only one callback function which c...

대략 15년 전 | 2

답변 있음
Is it possible to compile all of the MATLAB function in .NET?
Hi, I think you are talking about MATLAB Builder NE, right? If so, there are restrictions to what can be compiled: <http:/...

대략 15년 전 | 2

| 수락됨

답변 있음
3D Mesh with hexahedral finite elements
Hi, Doing a triangulation for hexahedral elements wont work well I think. I would go for the patch command here, e.g.: <ht...

대략 15년 전 | 2

답변 있음
How can I avoid a Java out-of-memory error when creating GUI using GUIDE?
Hi Maria, please try to increase your java heap space from MATLAB. You can find this option under File -> Preferences -> Gene...

대략 15년 전 | 1

| 수락됨

답변 있음
problem including header vc++6.0
It seems like you don’t started with an empty project. Because of this there are some settings which lead to this error, e.g. us...

대략 15년 전 | 1

답변 있음
Is there a smarter way to create a large vector, with repeated numbers in a diminishing quantity?
I think the repmat command can help: [repmat(2,144,1);repmat(3,143,1);repmat(4,142,1)]

대략 15년 전 | 1

답변 있음
I can not use libsvm!!!
I think your are talking about: <http://www.csie.ntu.edu.tw/~cjlin/libsvm/> The function libsvmtrain does not exist in tha...

대략 15년 전 | 4

| 수락됨

답변 있음
Weired Problem with parallel computing
I think this can be related to a too small port range for Parallel Computing Toolbox. Try to make the port range bigger. How you...

대략 15년 전 | 2

| 수락됨

답변 있음
DEPLOYMENT ERROR
Hi, Walter is right. You need admin privilges in order to be able to register this COM DLL. This is needed in order to be abl...

대략 15년 전 | 2

| 수락됨

답변 있음
DEPLOYMENT ERROR
I think when you take a look at the log file you will find the entry: $MATLABROOT\BIN\MEX.PL: Error: The chosen compiler ...

대략 15년 전 | 1

답변 있음
arrange the values in an array
Or you can use Word as Com Server. I prepared a little example for you: e = actxserver('Word.Application') e.visible =...

15년 초과 전 | 1

더 보기