|
From: <dmk...@us...> - 2008-07-24 08:06:50
|
Revision: 5829
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5829&view=rev
Author: dmkaplan
Date: 2008-07-24 08:06:45 +0000 (Thu, 24 Jul 2008)
Log Message:
-----------
Slight documentation changes.
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/cbook.py
Modified: trunk/matplotlib/lib/matplotlib/cbook.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/cbook.py 2008-07-24 07:59:18 UTC (rev 5828)
+++ trunk/matplotlib/lib/matplotlib/cbook.py 2008-07-24 08:06:45 UTC (rev 5829)
@@ -1159,10 +1159,15 @@
def less_simple_linear_interpolation( x, y, xi, extrap=False ):
"""
This function provides simple (but somewhat less so than
- simple_linear_interpolation) linear interpolation. This is very
- inefficient linear interpolation meant to be used only for a small
- number of points in relatively non-intensive use cases.
+ simple_linear_interpolation) linear interpolation.
+ simple_linear_interpolation will give a list of point between a
+ start and an end, while this does true linear interpolation at an
+ arbitrary set of points.
+ This is very inefficient linear interpolation meant to be used
+ only for a small number of points in relatively non-intensive use
+ cases.
+
Call signature::
yi = less_simple_linear_interpolation(x,y,xi)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|