| Thread | Last Post | Replies |
|
| Round-off error problem in Simpson's integration | 25 Jul 2008 09:31 GMT | 3 |
This is how my simpson method is written: function s = simpson(f,a,b,num) % Simpson's rule stepsize = (b-a)/num; halfstepsize = stepsize/2;
|
| Matlab array editor cut & paste | 25 Jul 2008 09:30 GMT | 3 |
I have a colleague who is trying to cut arrays out of Matlab and paste them into Excel (sinner!). However, it doesn't seem to do what's expected. An example:
>> a=rand(3); |
| pbs tasks ending early | 25 Jul 2008 08:48 GMT | 9 |
I've been trying to get matlab to run distributed on a unix cluster, which uses pbs (using linux on my desktop too). I'm using parfor to split up the tasks. The code runs just fine locally (machine has 4 cores), but it doesn't work
|
| fmincon for objective function with discontinuous Jacobian | 25 Jul 2008 07:39 GMT | 1 |
Suppose I charge "fmincon" with the task of minimizing an objective function f(x), where f(x) is continuous but has derivative discontinuities at 1 or more points. Can fmincon find the minimum of such a function f(x)? Is it okay
|
| about multithreading | 25 Jul 2008 07:25 GMT | 1 |
PC: Intel Core 2 Quad 9450 software/OS : Win XP SP3 / Matlab R2007a I got a problem on multithreading operations, that is, the number of the threads will become 2 when Matlab is running
|
| csvread, dlmread error | 25 Jul 2008 04:10 GMT | 1 |
I am trying to read in a .csv file i created in excel which looks like this: (from notepad) 1,9/22/2007,166,pass,r3453e-il,1.5,987.2a5 2,9/22/2007,167,pass,6hgfe in,1.5,987.2a5
|
| Solving multiple linear equations | 25 Jul 2008 04:09 GMT | 3 |
I have to solve multiple linear equations, of the form: n = 100; A = rand(3,2,n); b = rand(3,n);
|
| formatting my output | 25 Jul 2008 03:37 GMT | 1 |
I wrote some code to format my output and this is how my formatted output appears: this is the result for T = 1 k omega
|
| 3 different hidden layers | 25 Jul 2008 03:25 GMT | 5 |
>I am searching for neural network Matlab code with 3 different hidden nodes . Each hidden neuron has different function .For example ,one of them is logsig the other is tansig and so on. Can I use newff function for that ? DO you
|
| Annoying Error Message -- Help? | 25 Jul 2008 03:17 GMT | 3 |
Here is my source code: function[newInter remMass]=tr(masses,prec) [react_in1 react_in2, react_out1 react_out2, inter]=oXt(masses,prec);
|
| Target has an invalid version of xPC Target | 25 Jul 2008 02:24 GMT | 2 |
The error appearance when i use xPC Target API. The error is "Target has an invalid version of xPC Target". The reason why it is produce? Please give me some support! Thanks
|
| generating live data | 25 Jul 2008 02:05 GMT | 1 |
Suppose I need to simulate real-life live data with a decision maker: data is generated according to a distribution, say normal distribution. Any time a new data appears, it will trigger
|
| simple matlab problem | 25 Jul 2008 01:52 GMT | 3 |
I'm a very inexperienced MATLAB user with a problem that I believe to be very simple for someone that knows what they're doing. It's a string compare against a list of words. If the word typed in is in the list then it should
|
| Mex error in 64-bit 2008a Mac OS X beta | 25 Jul 2008 01:38 GMT | 2 |
I'm having trouble mex'ing some C++ code, which I have been able to compile successfully both on 64-bit Windows, Linux, as well as 32-bit Mac MATLAB versions. The problem is in the link loader (_mexFunction is undefined).
|
| Alternative Matlab FFT algorithm | 25 Jul 2008 01:11 GMT | 3 |
I'm an italian boy, so i'm sorry if i don't speak english very vell ! I have a model on simulink that takes a vector of 128 UINT16 values and calculate the FFT. My problem is that the FFT block/instruction accepts only DOUBLE values in input and i must use UINT16 values. Does exist ...
|