[Matrix-SIG] Source and Binary RPMS for Release 11

Travis Oliphant Oliphant.Travis@mayo.edu
Fri, 2 Apr 1999 17:45:08 -0600 (EST)


I've just put up source RPMS and i386-Linux binary RPMS for Release 11 of
Numerical Python at.
http://oliphant.netpedia.net

The RPMS include all of the documentation for gist and NumPy that I could
find in *.ps and *.pdf format.

-- Travis

P.S.

Thanks for incorporating the convolve change, Paul.  It's probably a
personality flaw but I can't tell you how tickled I was to see this
output from NumPy:

>>> convolve([2,3,5],[1,2,5],2)
array([ 2,  7, 21, 25, 25])

and compare it with MATLAB's

>> conv([2,3,5],[1,2,5])       

ans =

     2     7    21    25    25


Sweet...