[Scipy-svn] r6627 - trunk/scipy/interpolate/fitpack

scipy-svn at scipy.org scipy-svn at scipy.org
Sun Jul 18 15:21:45 EDT 2010


Author: charris
Date: 2010-07-18 14:21:45 -0500 (Sun, 18 Jul 2010)
New Revision: 6627

Modified:
   trunk/scipy/interpolate/fitpack/splder.f
Log:
BUG: declare e argument to be integer.

Modified: trunk/scipy/interpolate/fitpack/splder.f
===================================================================
--- trunk/scipy/interpolate/fitpack/splder.f	2010-07-18 19:21:42 UTC (rev 6626)
+++ trunk/scipy/interpolate/fitpack/splder.f	2010-07-18 19:21:45 UTC (rev 6627)
@@ -4,7 +4,7 @@
 c  its b-spline representation.
 c
 c  calling sequence:
-c     call splder(t,n,c,k,nu,x,y,m,wrk,ier)
+c     call splder(t,n,c,k,nu,x,y,m,e,wrk,ier)
 c
 c  input parameters:
 c    t    : array,length n, which contains the position of the knots.
@@ -59,7 +59,7 @@
 c++   - fixed initialization of sp to double precision value
 c
 c  ..scalar arguments..
-      integer n,k,nu,m,ier
+      integer n,k,nu,m,e,ier
 c  ..array arguments..
       real*8 t(n),c(n),x(m),y(m),wrk(n)
 c  ..local scalars..




More information about the Scipy-svn mailing list