IEEE Double precision Arithmetic
Hi All, Please help on the following problem. What is the largest integer N, for which all the integers in the interval [-N, N] are "exactly" representable in IEEE double precision form? Thank you Sarah ... 27 Jan 2010 03:45
To MATLAB Central Newsreader
To MATLAB Central Newsreader: hi, I posted a message as 'can't find the ToolBar and MenuBar' yesterday. Thank you for wrote back. This is the post you wrote back: http://www.mathworks.com/matlabcentral/newsreader/view_thread/271128#711357 and I have already read this one: http://www.mathworks.com/support/solutions... 26 Jan 2010 22:18
fminsearch - 100 iterations when starting point is the optimum
Hi I'm optimising a function that uses a 6d variable using fminsearch. Even when I give the starting point as a known optimum, it still takes more about 130 iterations to spit out the solution - which is of course the same as the starting point. For example if I start with, X0 = [320.000 491.7420 372.6962... 5 Feb 2010 02:51
NFFT Lib
Any one is using Daniel potts NFFT library Thanks ... 26 Jan 2010 22:18
Video acquisition
We have a video camera with a transmitter and receiver set .The video is streamed through the receiver to a laptop and is live feed.Basically I want the video to be streamed into matlab and detect any changes in movement . Please help me on the same . Thank you in advance PCR7 ... 26 Jan 2010 21:12
libactivation exception problem on OS X
I had this problem as well, except on Snow Leopard and with r2009a. Since no one followed up, I wanted to confirm that Java was indeed the culprit, but I didn't need to use 1.5 -- instead I needed to set 32-bit mode to be the default instead of 64-bit. Using the Java Preferences application (in /Applications/Utilities)... 24 Feb 2010 10:50
what's the best way to find the number of consecutive blocks in
Dear Luna! I want to find the length of longest consecutive stripe in that column... You can find the indices of changes between the values with: Ind = find(diff(x)) Then you can find the number of elements between the changes with a further DIFF: Len = diff(Ind) Now [Num, MaxInd] = MAX(Len) ... 26 Jan 2010 18:55
cross referencing two arrays
i have the following double arrays: 165 7077 165 7045 165 5175 168 7305 168 3487 169 6196 169 10213 170 7048 165 7077 165 7045 168 5175 169 7305 169 3487 170 6196 170 10213 170 7048 how do i obtain the number and percentage of common values in column 2 of array1 and array2 by the unique values in... 2 Feb 2010 15:17
what's the best way to find the number of consecutive blocks in an array?
Given an array A, for each column, I want to find the length of longest consecutive stripe in that column... for example, a column is as follows: 1 1 1 0 0 1 -1 -1 Then the length of the longest stripe should be 3, because there are three 1's out there... What's the most efficient way to do... 26 Jan 2010 16:39
Displaying graphic
I have a GUI which has a button to capture an image via webcam. I used 'imwrite' to store the graphic in a folder on my personal computer. But i do not know how to display the image on the GUI that i have created. Can anyone help me? Thank. ... 27 Jan 2010 05:56