Consider I have two lists, for describing the function y(x):
x = [0,1,2,3,4,5]
y = [12,14,22,39,58,77]
To give some value 'w' in the domain of x, I'm going to perform cubic spline interpolation.
w=1.25
I can find y(w)
I found this through Scipy, But I don't know how to use it.
python scipy interpolation spline cubic-spline