Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 59e5087

Browse files
committed
Slight documentation changes.
svn path=/trunk/matplotlib/; revision=5829
1 parent 007403a commit 59e5087

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

lib/matplotlib/cbook.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,9 +1159,14 @@ def simple_linear_interpolation(a, steps):
11591159
def less_simple_linear_interpolation( x, y, xi, extrap=False ):
11601160
"""
11611161
This function provides simple (but somewhat less so than
1162-
simple_linear_interpolation) linear interpolation. This is very
1163-
inefficient linear interpolation meant to be used only for a small
1164-
number of points in relatively non-intensive use cases.
1162+
simple_linear_interpolation) linear interpolation.
1163+
simple_linear_interpolation will give a list of point between a
1164+
start and an end, while this does true linear interpolation at an
1165+
arbitrary set of points.
1166+
1167+
This is very inefficient linear interpolation meant to be used
1168+
only for a small number of points in relatively non-intensive use
1169+
cases.
11651170
11661171
Call signature::
11671172

0 commit comments

Comments
 (0)