File tree 1 file changed +8
-3
lines changed 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -1159,9 +1159,14 @@ def simple_linear_interpolation(a, steps):
1159
1159
def less_simple_linear_interpolation ( x , y , xi , extrap = False ):
1160
1160
"""
1161
1161
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.
1165
1170
1166
1171
Call signature::
1167
1172
You can’t perform that action at this time.
0 commit comments