Created
May 7, 2011 04:43
-
-
Save markwatson/960210 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tested on Windows 7 and Python 2.7 | |
# the code | |
def lagrangian_interpolate(samples): | |
""" | |
Takes some samples as a list of tuples and returns a function that's | |
a lagrangian interpolation of all the samples. | |
""" | |
X = 0 # the tuple index of the X variable in the samples | |
Y = 1 # the tuple index of the Y variable in the samples | |
n = len(samples) | |
# define the L function as a function generator that generates L functions | |
# for a given i | |
def L(i): | |
"This function generates an L function for a given x_i" | |
def L_gen(x): | |
ret = [] | |
for j in xrange(n): | |
if j != i: | |
ret.append((x - samples[j][X])/(samples[i][X] - samples[j][X])) | |
return reduce(lambda a,b: a*b, ret) | |
return L_gen | |
return lambda x: sum(L(i)(x) * samples[i][Y] for i in xrange(n)) | |
# main | |
prob_1 = lagrangian_interpolate([(2,1.4142),(2.5,1.5811),(3.0,1.7321)]) | |
print prob_1(2.2) | |
prob_1_b = lagrangian_interpolate([(2,1.4142),(2.5,1.5811),(2.7,1.6432)]) | |
print prob_1_b(2.2) | |
prob_2 = lagrangian_interpolate([(2.0,1.4142),(2.5,1.5811),(3.0,1.7321),(3.5,1.8708)]) | |
print prob_2(2.8) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello I want to know why the reduce isn’t working for me? I’m trying to run the code but cant