First  |  Prev |  Next  |  Last
Pages: 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
parallel jobs in matlab
I wanted to know if it is possible to run parallel jobs in matlab in cluster without Distributed computing server license. I have installed matlab on the cluster machine but so far have not been able to run parallel jobs. Scheduler - SGE. MATLAB Version 7.8.0.347 (R2009a) Parallel Computing Toolbox Version 4.1... 28 Jul 2010 15:09
test
this is a test for Kris, please disregard ... 28 Jul 2010 15:09
rescaling for fmincon
"Matt J " <mattjacREMOVE(a)THISieee.spam> wrote in message <i2o5ds$bd6$1(a)fred.mathworks.com>... "Samuel Edwards" <DJeter1234(a)AOL.com> wrote in message <i2no52$3oi$1(a)fred.mathworks.com>... Doesn't fmincon approximate the Hessian automatically? How would I approximate it better? I do not have the actual gradi... 28 Jul 2010 15:09
interpolate from patches
Hi all, I'm solving a PDE on a mesh. The mesh is of the format similar to the results of DelaunayTri, but I'm dealing with both triangles and quadrangles. So dt.Quadrangulation holds a list of vertices for each quadrangle/triangle. Triangles pad the last vertice with NaN. dt.X holds coordinates. Example (try runni... 28 Jul 2010 16:15
Reading generic msh file
I'm trying to read a generic mesh file which is structured like: 1 5.00000000000e+00 0.00000000000e+00 5.00000000000e+00 to do so I've got: i=0; for r = 1:R if (r > (eos(1)+1) && r < eos(2)) i = i + 1; node(i,:) = fscanf(fid,'%f %f %f %f'); end end Where R is the total num... 28 Jul 2010 16:15
Make errordlg require response
Hello all, How can I force the user to respond to an errordlg() box? wait? gcf? Thanks Maxx ... 28 Jul 2010 16:15
medical image registration
hello I am looking for medical image for rigid image registration in 2d if you have exemples of medical image database for this ,send me it thank you fffatahf(a)gmail.com ... 28 Jul 2010 15:09
Use Blockproc to do something other than give me a manipulatedimage
Julia Weidner wrote: blockproc('image1.tif', [10 10], @(block_struct) imresize(block_struct.data, .5), 'Destination', 'newimage.tif') I have successfully saved my newimage to a folder in my directory but now I want to know other things about my picture (like the average RGB values) but all blockpr... 28 Jul 2010 17:21
LMS
I used this code for ID implementation of the LMS algorithm. Can someone help me to change it to a 2D. I want to apply it to images. L = 1000; stepsize = 0.05; u = zeros(1,L); for i = 3:L u(i) = -0.1*u(i-1)+0.8*u(i-2)+sqrt(0.27)*randn(1,1); end w(1:2,1) = [0;0]; %w=zeros(2,1) for n = 1:L-3 x = [u(n... 28 Jul 2010 15:09
2D LMS Algorithm
How do I implement the Least Mean Square Algorithm using Images? I have a code to work for ID signals but I am unable to do the same for images. I need a code that can restore a noisy image using LMS. ... 28 Jul 2010 15:09
First  |  Prev |  Next  |  Last
Pages: 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146