I have a set of points like
X = [1, 2, 3, 4, 5, ..]
Y = [9, 7, 5, 3, 5, ..]
I need to find interpolation parabola for Y like it's done my MNK method for lines. Is there any functions in NumPy maybe? Im not really good at therms of quadratic approximation so couldn't find it by myself. Thanks.