[Matrix-SIG] RedHat RPMS i386/src of Cephes module

Travis Oliphant Oliphant.Travis@mayo.edu
Thu, 17 Dec 1998 21:11:02 -0600 (CST)


For those interested I've just released an rpm version of the cephes
module that provides special functions for arbitrary arrays with NumPy.

i386 binary and source RPM's are provided.

With this module it is a snap to define kaiser windows in python as
in Matlab:

def kaiser(M,beta):
    n = arange(0,M)
    alpha = (M-1)/2.0
    return cephes.i0(beta * sqrt(1-((n-alpha)/alpha)**2))/cephes.i0(beta)

Any feedback is most welcome,

----------------------------------------------------
Travis Oliphant            200 First St SW          
    	                   Rochester MN 55905       
Ultrasound Research Lab	   (507) 286-5923           
Mayo Graduate School	   Oliphant.Travis@mayo.edu