Re: Conditional probability
> I am having some problems in calculating conditional probability. To > explain my case, I have a normally distributed sample (say, mu = 5.0, std > = 2.0) and I would like to calculate the...
View ArticleRe: How to generate Latin Hypercube parameter space
It sounds like you are hoping for an extension of latin hypercube designs to non-rectangular regions. If such a thing exists, I'm not aware of it. Would it be satisfactory to discard the points that...
View ArticleRe: remove comma
On 2/22/2013 3:12 PM, Paul wrote: ...> The problem is that the import data cannot be changed (its from excel, i> my example i only showed a small part of it) and what i wanted was to> write a...
View ArticleRe: remove comma
dpb <none@non.net> wrote in message <kg8pt8$rm1$1@speranza.aioe.org>...> On 2/22/2013 3:12 PM, Paul wrote:> ...> > > The problem is that the import data cannot be changed...
View Articlecomputing frequency of combination of words
Hi! I have a tricky question. I've computed the frequency of the words for a set of documents. Now I have a matrix of n x m (1100 x 1400) where n is the number of documents and m features. These...
View ArticleSeeking code for boolean minimization to sum-of-products
Is there matlab code for minimizing boolean expressions into a simple sum-of-products? The problem is somewhat symbolic in nature, and googling hasn't turned up anything for Matlab...thus I wonder.
View ArticleRe: if box is checked, see if panel is visible, if not, make panel visible
"Dustin" wrote in message <kg8hin$p5t$1@newscl01ah.mathworks.com>...> I'm pretty new to Matlab and totally new to GUI making, and need to know how to make an if statement in a checkbox...
View ArticleRe: Auto MarkerFaceColor
"Sia" wrote in message <kg0656$c37$1@newscl01ah.mathworks.com>...> Hello everyone.> > I plot with multi lines like this:> > plot([0 1],[0 1; 0 2;0 3; 0 4],'o-');> matlab...
View ArticleRe: Writing to a file and printing on the screen at the same time
"Leo Simon" <leosimon@berkeley.edu> wrote in message <kg5dm5$rnq$1@newscl01ah.mathworks.com>...> Hi Bruno, I tried this and couldn't get it to work. Could you please give an example of...
View ArticleRe: can not run mex function
"ammar al jodah" wrote in message <kg8l1c$775$1@newscl01ah.mathworks.com>...> hello i have this error when want to compile c-file on MATLAB 2011b , i use WIN 7 64 bit, any help will be...
View ArticleNeed urgent help guys
Hello I am having a strange problem and thinking I can use MATLAB to solve it. I have text files with content as below: 7.9862668e+001 7.8140733e+001 8.0422936e+001 8.2806563e+001 8.3409122e+001...
View ArticleRe: Need urgent help guys
Dear dhiraj, Read the file using: V = fscanf(fid, '%g '); Write the new file: fprintf(fid, '%.2f ', V); Kind regards, Jan
View ArticleRe: Interfacing of IP thermal camera with MATLAB
Hello swati, It sounds like your MEX file is encountering a segmentation fault; I'm wasn't aware that FLIR offers a C/C++ API (I assume cv.h and/or highgui.h are include files for code provided by...
View Articleremove recurring elements from cell.
I need elements from the last cell (say k-th) not occurring in cell before it i.e. (k-1)th cell where k = 1,2,...,p. An example, k=2, r=2^(k+2)+2, n=2^(k)+1; for i=1:k dt = 1:2^i:n;...
View ArticleRe: No more fmincon messages!
The help file reads that fmincon's option Diagnostics: Display diagnostic information about the function to be minimized or solved. The choices are 'on' or the default, 'off' So the default is already...
View ArticleAdaptive frequency hopf oscillator
Hello , Any one has used adaptive frequency hopf oscillator. This osillator adapts the frequency of external perturbation (External input). if any one has used this technique please guide me how to...
View ArticleRe: Automating an iterative procedure
On 2/23/2013 3:01 PM, Milos Milenkovic wrote: ...[top posting repaired--please don't: hard conversation follow makes]...> dpb <none@non.net> wrote in message...
View ArticleRe: No more fmincon messages!
I tried a very crude fix. I just made a new fmincon2.m and there I deleted the part that generates the waning message. So I now don't see that message any more. But the "fmincon stopped because" and...
View ArticleRe: No more fmincon messages!
Perhaps I don't know how to put options. options = optimset('Display','off'); [x,fvalx]=fmincon(func,[0.7],[],[],[],[],[0.5],[1],options); This created error. ===================== Error using...
View ArticleRe: No more fmincon messages!
The output section in the help file reads like this. There it says something about 'exit message'. But I don't know how to eliminate it. =================== output Structure containing information...
View Article