Path: news.mathworks.com!not-for-mail
From: "Bruno Luong" <b.luong@fogale.findmycountry>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Split a monotonic array
Date: Mon, 20 Oct 2008 13:23:02 +0000 (UTC)
Organization: FOGALE nanotech
Lines: 12
Message-ID: <gdi0nm$msl$1@fred.mathworks.com>
References: <gdg54q$3e1$1@fred.mathworks.com> <gdhtid$fb4$1@fred.mathworks.com>
Reply-To: "Bruno Luong" <b.luong@fogale.findmycountry>
NNTP-Posting-Host: webapp-05-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1224508982 23445 172.30.248.35 (20 Oct 2008 13:23:02 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Mon, 20 Oct 2008 13:23:02 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 390839
Xref: news.mathworks.com comp.soft-sys.matlab:496233


"John D'Errico" <woodchips@rochester.rr.com> wrote in message <gdhtid$fb4$1@fred.mathworks.com>...
> 
> Are you willing to use histc to bin the elements?
> 
> [junk,bins] = histc(A,A(1):dmax:A(end));
> 

Hi John,

Not sure how it would affect the performance of my application, because it might be not optimal since the number of bins is larger, thus later my application calls more memmapfile than it needs to.

Bruno