[OctDev] Input/Output: io 1.0.20 released

2012-09-07 Thread Carnë Draug
Hi everyone a new release of io package is out, version 1.0.20, by Philip Nienhuis. Enjoy Octave responsibly. Carnë -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and t

[OctDev] No isimag() curioso

2012-09-07 Thread Daniel J Sebald
In working with the fftfilt() routine and wanting to know if the inputs were purely imaginary I wondered why there is no such thing as isimag(). It seems as though it would be as useful as or more useful than iscomplex(). Here's the thing: iscomplex() appears to be simply the complement of i

Re: [OctDev] Test failures due to tolerance in fftfilt.m

2012-09-07 Thread Daniel J Sebald
On 09/06/2012 02:59 PM, Daniel J Sebald wrote: > I'll toss this one to Ed and Rik, since we were just talking about > precision issues for svds test failures... > > I checked the current state of tests and found this failure: > >> processing >> /usr/local/src/octave/octave/octave/scripts/si

Re: [OctDev] openmpi_ext

2012-09-07 Thread c.
On 7 Sep 2012, at 14:18, Claudio Freire wrote: > I thought of that, but that would be similar to > > return octave_value_list(); > > Whereas in MPI_Probe.cc:105, theres another print_usage that returns > octave_value(-1). > > I thought it should return the same thing in both cases where it > p

Re: [OctDev] bwlabeln "finished"

2012-09-07 Thread Jordi Gutiérrez Hermoso
On 7 September 2012 07:06, Kris Thielemans wrote: > My initial impression if your newest bwlabeln implementation seems > good! Great, thanks for testing. > I have only 1 problem. In my matlab code, I normally pass a (double) > array with 0,1 to bwlabeln. This doesn't work for your > implementati

Re: [OctDev] regionprops fixes n-dimensional fixes

2012-09-07 Thread Jordi Gutiérrez Hermoso
On 6 September 2012 04:45, Søren Hauberg wrote: > > On Sep 5, 2012, at 11:51 PM, Jordi Gutiérrez Hermoso wrote: > >> regionprops does a bunch of things, most of which make sense for >> N-dimensional images. I attach a proposed diff to address this. Can >> anyone give me some review before I commit

[OctDev] io-1.0.20 release

2012-09-07 Thread Philip Nienhuis
-- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile secur

Re: [OctDev] bwlabeln "finished"

2012-09-07 Thread Kris Thielemans
On 07 September 2012 12:55 Carnë Draug wrote > On 7 September 2012 13:06, Kris Thielemans wrote: > > I have only 1 problem. In my matlab code, I normally pass a (double) array > with 0,1 to bwlabeln. This doesn't work for your implementation: > > > > bwlabeln(ones([2,2,3])) > > error: bwlabeln: fi

Re: [OctDev] control 2.3.53 released

2012-09-07 Thread Lukas Reichlin
On 07.09.2012, at 13:57, marco atzeri wrote: > On 9/7/2012 1:46 PM, Lukas Reichlin wrote: >> On 07.09.2012, at 13:37, Rafael Laboissiere wrote: >> >>> >>> I built the control package on my Debian system with libblas-dev >>> installed and libatlas3-base, libatlas-dev, libopenblas-base, and >>> li

Re: [OctDev] openmpi_ext

2012-09-07 Thread Claudio Freire
On Fri, Sep 7, 2012 at 4:50 AM, c. wrote: > === > --- MPI_Probe.cc(revision 10967) > +++ MPI_Probe.cc(working copy) > @@ -101,11 +101,8 @@ >print_usage (); >results = octave_value (-1); >

Re: [OctDev] openmpi_ext

2012-09-07 Thread Claudio Freire
On Fri, Sep 7, 2012 at 4:38 AM, c. wrote: >> openmpi_ext fails to build with openmpi 1.5, since it uses an >> undocumented, private field (_count) of the MPI_Status structure that >> was renamed (to _ucount). It's still uncommitted, I had sent a patch >> earlier. Just a reminder. > > It seems your

Re: [OctDev] control 2.3.53 released

2012-09-07 Thread marco atzeri
On 9/7/2012 1:46 PM, Lukas Reichlin wrote: > On 07.09.2012, at 13:37, Rafael Laboissiere wrote: > >> >> I built the control package on my Debian system with libblas-dev >> installed and libatlas3-base, libatlas-dev, libopenblas-base, and >> libopenblas-dev removed. I still get the same errors in t

Re: [OctDev] bwlabeln "finished"

2012-09-07 Thread Carnë Draug
On 7 September 2012 13:06, Kris Thielemans wrote: > I have only 1 problem. In my matlab code, I normally pass a (double) array > with 0,1 to bwlabeln. This doesn't work for your implementation: > > bwlabeln(ones([2,2,3])) > error: bwlabeln: first input argument must be a 'logical' ND-array > > I

Re: [OctDev] control 2.3.53 released

2012-09-07 Thread Lukas Reichlin
On 07.09.2012, at 13:37, Rafael Laboissiere wrote: > * Lukas Reichlin [2012-09-03 12:03]: > >> On 03.09.2012, at 10:39, Rafael Laboissiere wrote: >> >>> * Rafael Laboissiere [2012-08-30 23:47]: >>> * Carnë Draug [2012-08-27 16:43]: > a new release of control package is out, v

Re: [OctDev] control 2.3.53 released

2012-09-07 Thread Rafael Laboissiere
* Lukas Reichlin [2012-09-03 12:03]: > On 03.09.2012, at 10:39, Rafael Laboissiere wrote: > > > * Rafael Laboissiere [2012-08-30 23:47]: > > > >> * Carnë Draug [2012-08-27 16:43]: > >> > >>> a new release of control package is out, version 2.3.53, by Lukas > >>> Reichlin. > >> > >> In exe

Re: [OctDev] bwlabeln "finished"

2012-09-07 Thread Kris Thielemans
Hi Jordi My initial impression if your newest bwlabeln implementation seems good! It's not so easy to test this exhaustively of course. But for instance this works tmp=ones(2,2,3); % add another "blob" somewhere further away tmp(3:4, 4:6, 2:3)=ones(2,3,2); res=bwlabeln(tmp~=0); % we should have

[OctDev] fpl-1.3.2

2012-09-07 Thread Carlo de Falco
Hi, I just uploaded version 1.3.2 of the fpl package to the release tracker. Before the release is made official, I'd be grateful if someone with an older version of Octave installed could confirm thatwith the latest changes compatibility with Octave 3.2.* has been recovered. To test, please inst

Re: [OctDev] openmpi_ext

2012-09-07 Thread c.
On 7 Sep 2012, at 06:58, Claudio Freire wrote: > Regarding this patch, it seems there's a missing return > that makes > newer gcc complain about garbage being returned - there's a patch for > that attached. Thanks for reporting this. It seems the bug was not a missing return but rather a misplac

Re: [OctDev] openmpi_ext

2012-09-07 Thread c.
On 7 Sep 2012, at 06:58, Claudio Freire wrote: > openmpi_ext fails to build with openmpi 1.5, since it uses an > undocumented, private field (_count) of the MPI_Status structure that > was renamed (to _ucount). It's still uncommitted, I had sent a patch > earlier. Just a reminder. It seems your