Re: [OctDev] parallel-2.0.4 submitted for release

2010-08-25 Thread Stephen Montgomery-Smith
Olaf Till wrote: > Package parallel-2.0.4 has been submitted to the release-forum. > > It contains some fixes and cleanup. > > Olaf For parallel-2.0.4 to build under FreeBSD-8, I found that I had to add #include to the file parallel-2.0.4/src/sock-stream.h I can add this specifically to the po

Re: [OctDev] corr2.m in MATLAB and Octave

2010-08-25 Thread Carnë Draug
On 25 August 2010 16:36, Marco Atzeri wrote: > I guess that to replicate Matlab > > you need to call corr2(a(:),b(:)) > > as for cov > http://octave.sourceforge.net/nan/function/cov.html > > Marco Can't this be adjusted in the function? By looking at the code of corr2, swapping cov (I, J) / (std

Re: [OctDev] corr2.m in MATLAB and Octave

2010-08-25 Thread Marco Atzeri
--- Mer 25/8/10, Carnë Draug ha scritto: > Hi > > I can confirm that. I don't know if the octave's corr2 is > supposed to > work differently than matlab's corr2 (although the > description in the > link you gave is similar to the one in corr2 help text). > The following > code gives a matrix, no

Re: [OctDev] corr2.m in MATLAB and Octave

2010-08-25 Thread Carnë Draug
Hi I can confirm that. I don't know if the octave's corr2 is supposed to work differently than matlab's corr2 (although the description in the link you gave is similar to the one in corr2 help text). The following code gives a matrix, not a scalar a = rand(5); b = rand(5); r = corr2(a,b) On 20

Re: [OctDev] statistics-Package minor bugfixes in nanmin and nanmax

2010-08-25 Thread Arno Onken
On 08/25/2010 11:42 AM, octave-dev-requ...@lists.sourceforge.net wrote: > three minor bugs in nanmin and nanmax of the current statistics package > (1.0.10). Proposed patch attached. I applied your patches. Thanks! Arno --

Re: [OctDev] io package updated

2010-08-25 Thread c.
On 25 Aug 2010, at 11:49, Søren Hauberg wrote: > man, 16 08 2010 kl. 23:30 +0200, skrev Philip Nienhuis: >> A new version (1.0.13) of the io package is in the upload forum. >> Can you >> please update it on the site, please? > > I have uploaded it; sorry for the delay. > > Søren Thanks for tak

Re: [OctDev] Developer Request

2010-08-25 Thread Søren Hauberg
Hi tor, 08 07 2010 kl. 22:13 -0500, skrev Steve Poulsen: > Source Forget Username: jelloskin > > Want to submit "Raised cosine filter design" for the signal package. I'm sorry about the late reply. In general we require the first code submission to happen on this mailing list. Could you please

Re: [OctDev] package release ?

2010-08-25 Thread Søren Hauberg
Hi I'm truly sorry about the delay (work/life is killing me at the moment). I might be using the forum in the wrong way, but I cannot see your post. Could you upload your package once again and let me know when it is done? Once again I apologize for not dealing with this sooner; I think your work

Re: [OctDev] io package updated

2010-08-25 Thread Søren Hauberg
man, 16 08 2010 kl. 23:30 +0200, skrev Philip Nienhuis: > A new version (1.0.13) of the io package is in the upload forum. Can you > please update it on the site, please? I have uploaded it; sorry for the delay. Søren

Re: [OctDev] parallel-2.0.4 submitted for release

2010-08-25 Thread Søren Hauberg
tir, 24 08 2010 kl. 14:09 +0200, skrev Olaf Till: > Package parallel-2.0.4 has been submitted to the release-forum. I have made the release; sorry for the delay. Søren -- Sell apps to millions through the Intel(R) Atom(

[OctDev] statistics-Package minor bugfixes in nanmin and nanmax

2010-08-25 Thread Andreas Reifert
Hello, three minor bugs in nanmin and nanmax of the current statistics package (1.0.10). Proposed patch attached. a) nanmax does not process optional third argument DIM correctly, if second argument is empty. Example: octave:1> nanmax([1,2,nan;nan,nan,nan],[],2) ans = 2 -Inf NaN