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

14 years ago | 1

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

14 years ago | 2

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

14 years ago | 1

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

14 years ago | 1

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

14 years ago | 0

| accepted

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

14 years ago | 1

Answered
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/>

14 years ago | 1

Answered
delete contour lines
Hi, contourf(peaks(20),10,'edgecolor','none'); greetings

14 years ago | 13

| accepted

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

14 years ago | 1

| accepted

Answered
??? 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.

14 years ago | 1

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

14 years ago | 2

| accepted

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

14 years ago | 1

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

14 years ago | 2

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

14 years ago | 1

| accepted

Answered
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!...

14 years ago | 1

| accepted

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

14 years ago | 2

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

14 years ago | 2

| accepted

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

14 years ago | 1

Answered
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’...

14 years ago | 1

| accepted

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

14 years ago | 2

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

14 years ago | 2

| accepted

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

14 years ago | 2

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

14 years ago | 1

| accepted

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

14 years ago | 1

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

14 years ago | 1

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

14 years ago | 4

| accepted

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

14 years ago | 2

| accepted

Answered
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 years ago | 2

| accepted

Answered
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 years ago | 1

Answered
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 years ago | 1

Load more