Re: [OctDev] __magick_read__ is broken for imagemagick-6.4.0

2008-07-30 Thread David Bateman
Ok I implemented this change but wrote it as if (depth == 1) output = read_imagesboolNDArray(imvec, frameidx, depth); else if (depth 1 depth = 8) output = read_imagesuint8NDArray(imvec, frameidx, depth); else if (depth 8 depth = 16) output =

Re: [OctDev] minor bug in statistics-1.0.6/random.m

2008-07-30 Thread David Bateman
Blair Sutton wrote: On line 125, the retval for the binornd is not semicolon-terminated. This produces unwanted additional output when including the function in a script. Kind regards Blair Ok I commit the fix Thanks D. -- David Bateman[EMAIL

Re: [OctDev] Downsample MATLAB incompatibility?

2008-07-30 Thread David Bateman
[EMAIL PROTECTED] wrote: FYI it appears that the octave downsample function performs reasonably but differently from MATLAB in the third argument, the phase of the downsample: MATLAB: downsample(1:10, 2, 0) == [1 3 5 7 9] OCTAVE: downsample(1:10, 2,0) == { barfs } OCTAVE:

[OctDev] laguerre polynomials

2008-07-30 Thread Eric Chassande-Mottin
I've written a routine which computes the Laguerre polynomials. It could be added to octaveForge? it is maybe redundant with a routine of the GSL. if it is worth it, I am not sure where it should be placed (specfun? misc?). e. http://www.nabble.com/file/p18730466/laguerre.m laguerre.m -- View

Re: [OctDev] laguerre polynomials

2008-07-30 Thread David Bateman
Eric Chassande-Mottin wrote: I've written a routine which computes the Laguerre polynomials. It could be added to octaveForge? it is maybe redundant with a routine of the GSL. if it is worth it, I am not sure where it should be placed (specfun? misc?). e.