[Scipy-svn] r2201 - trunk/Lib/interpolate

scipy-svn at scipy.org scipy-svn at scipy.org
Tue Sep 19 08:44:56 EDT 2006


Author: stefan
Date: 2006-09-19 07:44:07 -0500 (Tue, 19 Sep 2006)
New Revision: 2201

Modified:
   trunk/Lib/interpolate/fitpack.py
Log:
Fix spelling mistakes in fitpack.


Modified: trunk/Lib/interpolate/fitpack.py
===================================================================
--- trunk/Lib/interpolate/fitpack.py	2006-09-18 07:34:13 UTC (rev 2200)
+++ trunk/Lib/interpolate/fitpack.py	2006-09-19 12:44:07 UTC (rev 2201)
@@ -48,8 +48,8 @@
     The spline is weighted least-squares polynomial of degree k.
     fp gives the upper bound fp0 for the smoothing factor s""",None],
                1:["""\
-    The required storage space exceeds the available strorage space.
-    Probably causes: data (x,y) size is too small or smoothing parameter s is too small (fp>s).""",ValueError],
+    The required storage space exceeds the available storage space.
+    Probable causes: data (x,y) size is too small or smoothing parameter s is too small (fp>s).""",ValueError],
                2:["""\
     A theoretically impossible results when finding a smoothin spline
     with fp = s. Probably causes: s too small. (abs(fp-s)/s>0.001)""",ValueError],
@@ -73,8 +73,8 @@
     Warning. The coefficients of the spline have been computed as the minimal
     norm least-squares solution of a rank deficient system.""",None],
             1:["""\
-    The required storage space exceeds the available strorage space.
-    Probably causes: nxest or nyest to small or s is too small. (fp>s)""",ValueError],
+    The required storage space exceeds the available storage space.
+    Probably causes: nxest or nyest too small or s is too small. (fp>s)""",ValueError],
             2:["""\
     A theoretically impossible results when finding a smoothin spline
     with fp = s. Probably causes: s too small or badly chosen eps.
@@ -94,7 +94,7 @@
             10:["""\
     Error on input data""",ValueError],
             11:["""\
-    rwrk2 to small, i.e. there is not enough workspace for computing
+    rwrk2 too small, i.e. there is not enough workspace for computing
     the minimal least-squares solution of a rank deficient system of linear
     equations.""",ValueError],
             'unknown':["""\




More information about the Scipy-svn mailing list