[Scipy-svn] r5413 - trunk/scipy/interpolate

scipy-svn at scipy.org scipy-svn at scipy.org
Fri Jan 9 07:05:59 EST 2009


Author: rkern
Date: 2009-01-09 06:05:57 -0600 (Fri, 09 Jan 2009)
New Revision: 5413

Modified:
   trunk/scipy/interpolate/rbf.py
Log:
DOC: correct docstring per #840. Thank you, fghorow.

Modified: trunk/scipy/interpolate/rbf.py
===================================================================
--- trunk/scipy/interpolate/rbf.py	2009-01-09 10:46:20 UTC (rev 5412)
+++ trunk/scipy/interpolate/rbf.py	2009-01-09 12:05:57 UTC (rev 5413)
@@ -87,8 +87,8 @@
                 return sqrt( ((x1 - x2)**2).sum(axis=0) )
 
         which is called with x1=x1[ndims,newaxis,:] and
-        x2=x2[ndims,:,newaxis] such that the result is a symmetric, square
-        matrix of the distances between each point to each other point.
+        x2=x2[ndims,:,newaxis] such that the result is a matrix of the distances
+        from each point in x1 to each point in x2.
 
     Examples
     --------




More information about the Scipy-svn mailing list