First
|
Prev |
Next
|
Last
Pages: 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
ear detection Hi, am trying to detect ear from side face 2D image using active contour. The region which is having higher probability to contain ear is extracted. now how to apply contour equation that I don't know. Can u please help me???? ... 19 Feb 2010 06:32
Crash while starting Matlab 2009b on Snow Leopard I get a crash while trying to start Matlab 2009b on my Mac laptop. It crashes immediately after opening the initial window. Below is the first part of the crash report. Until I can figure this out, I'm completely dead in the water because I can't run Matlab at all. I can't make any sense out of the traceback to eve... 23 Feb 2010 10:09
Tridiagonal Solver Basically what I need to do is code a tridiagonal solver and be able to implement it with sparse matrices. Right now I feel my code is a bit off and I am not sure what I need to tweak. So far I have: function x = project2(a,b,c,d,n) for i = 2:n s= -a(i-1)/b(i-1); b(i)= b(i)+c(i-1)*s; d(i)= d(i)+b(i-... 18 Feb 2010 22:56
Reading in and editing an m file "Lei Liew" <lei.liew(a)gmail.com> wrote in message <hlkklc$gcl$1(a)fred.mathworks.com>... Dear all, I am a beginning Matlab user and trying to do a relatively simple task. I have a series of vectors saved in a file ('vectors.m'). I want to create a new file ('vectors2.m') that is a copy of the first, and search ... 18 Feb 2010 20:43
Reading in and editing an m file Dear all, I am a beginning Matlab user and trying to do a relatively simple task. I have a series of vectors saved in a file ('vectors.m'). I want to create a new file ('vectors2.m') that is a copy of the first, and search for one vector ('vectorB') and randomly sort the values into two groups (e.g. 'vectorB1' and ... 18 Feb 2010 19:35
Reinterpreting float32 data as uint32 I'm using fread() to read in large binary data files with fixed-size logical records. Each logical record contains ten items, nine of which are float32 data and one of which is uint32 data. For simplicity, I read in a large chunk of data in a single fread() statement, using a "precision" string to store all read data... 19 Feb 2010 18:51
how to clear variables from workspace from within a function Hi, How does one clear variables from a workspace when called from within a function? I have this line in the function % Clean up the workspace clear data k l u a b data textdata and it's not clearing anything. Any suggestions? Thanks, ... 18 Feb 2010 21:50
Not enough memory to render a 1217 by 0 buffer Hi, I have built a gui on a computer and it works perfectly, but when someone else is using it form another computer, matlab says: Warning: Not enough memory to render a 1217 by 0 buffer Do you know what could be the problem? Is it because in the gui I am uising setappdata? Both computer have matlab 7.5.0.342... 18 Feb 2010 18:28
fgoalattain algorithm Hi would it be possible for someone to provide a high level flowchart or algorithmic description of fgoalattain. I need to understand the mechanics of the function in order to decide how to solve my optimization problem. Thanks Ben ... 19 Feb 2010 07:38
reshaping to iterate matrix multiplication across third dimension "Nathan Thern" <thern(a)raytheon.com> wrote in message <hlk70i$kho$1(a)fred.mathworks.com>... Hello, I have an application which originally multiplied 5 4x4 matrices together like so: R = M * N * O * P * Q; My application has changed somewhat, so now the O matrix is 4x4xZ with Z > 1. I changed my cod... 18 Feb 2010 17:20 |