| Thread | Last Post | Replies |
|
| Stopping itteration | 20 Jul 2008 20:21 GMT | 1 |
I am making this MDP value iteration algorithm and getting stuck on how to stop it when the difference between the last value and the older one is less than epsilon. Here is the code:
|
| Mex File | 20 Jul 2008 19:47 GMT | 1 |
I want to use Java NetBeans IDE (which one can also use for C project development) for writing some C Mex functions. My question is, where to I reference/link to files such as mex.h , matrix.h, mat.h, mwdebug.h and all these other MathWorks files? Where do they reside (folder) ...
|
| Ending one GUI from another | 20 Jul 2008 19:17 GMT | 7 |
How do I end or delete one GUI that is open and inactive at the back from the one that is active and in front. PS. These GUI's are not connected. i.e one did not trigger the other. There was a gui window say GUI_1. It opened GUI_2
|
| function in matlab to delay() function in C | 20 Jul 2008 12:06 GMT | 1 |
I am interfacing port to generate clock via parallel port. Is there any fucntion in C which can introduce a given delay . I remember in TURBO C++ 3.0, there was a function delay(milliseconds) in file 'DOS.H'
|
| reduce time for a specific code | 20 Jul 2008 11:23 GMT | 5 |
I have to improve an already existing MATLAB code. To give you the general idea of the code, there is an electrical network which has 18 switches. Using GA, the program tests several topologies (combination of open and closed
|
| simple ellipsoid | 20 Jul 2008 09:25 GMT | 2 |
I have to plot an ellipsoid in a 3d visualization on matlab. the code is very simple: a_x=2; a_y=3;
|
| Bar Plot in MATLAB - Color individual groups, not individual bars within a group | 20 Jul 2008 09:13 GMT | 2 |
I have a MATLAB Bar Plot question for the group. I'm generating a bar plot using the following command in MATLAB: bar(data); where 'data' is a 3x4 matrix that looks like this:
|
| laplace trans problem | 20 Jul 2008 05:16 GMT | 3 |
run as follows: %%%%%%% syms q0 q1 p1 s A V0 x rou; F=ilaplace(V0/(s+A)*exp(-rou*s*x/(q0/s+(q1/p1-q0)/
|
| Derivest Hessian | 20 Jul 2008 03:32 GMT | 1 |
I need to compute the Hessian to find standard errors for an MLE. However, there are some boundary constraints that cannot be violated in computing the finite differences. John D'Errico's Derivest Suite has very nice tools for
|
| Matlab terminates when calling mex function | 20 Jul 2008 02:52 GMT | 3 |
I wrote a C++ Mex file and it compiles without any errors and warnings. When I try to call the function, Matlab closes automatically. I debugged with MS Visual Studio 2005 and the function was able to return to Matlab with correct answers.
|
| help with for loop | 19 Jul 2008 23:46 GMT | 4 |
i have a matrix with numbers of -1 and 1 i want to switch them, in communication i.e. map them using the binary shift keying at the receiver side. I should get 1 for 1 and -1 should equal 0. I have written the for loop but what seems
|
| matlab random object | 19 Jul 2008 23:06 GMT | 20 |
does rand in matlab only applicable for numbers? What can I do if I want to randomise the files? for examples: wavread (file1);
|
| apply non-integer power on column vector | 19 Jul 2008 22:55 GMT | 1 |
I am having a problem on how to solve the equation out. Suppose i am having a column vector:- s=[3;-5] when i attempt to apply non-integer power of 3/5 on the
|
| TCP communication of 2 computers running Matlab | 19 Jul 2008 21:56 GMT | 4 |
I am trying to send/receive data between two computers running Matlab with the tcpip object. From what I can tell, there is no way to have Matlab "LISTEN" for the other computer to open a TCP connection.
|
| question on the title of the graph | 19 Jul 2008 20:25 GMT | 4 |
Suppose I use a loop to plot 5 figures (i.e, i=1:5). Now I want to show the value of i in the title of each figure so that I can index each figue (since different value of i represents different variable ). But if I use title(' i '), it only shows i on top of each
|