python interpolation code example
Example 1: python string interpolation
name = 'World'
program = 'Python'
print(f'Hello {name}! This is {program}')
Example 2: scipy, interpolate
>>> xnew = np.arange(0, 9, 0.1)
>>> ynew = f(xnew)
>>> plt.plot(x, y, 'o', xnew, ynew, '-')
>>> plt.show()
Example 3: smooth interpolation python
>>> from scipy.interpolate import UnivariateSpline
>>> x, y = np.array([1, 2, 3, 4]), np.array([1, np.nan, 3, 4])
>>> w = np.isnan(y)
>>> y[w] = 0.
>>> spl = UnivariateSpline(x, y, w=~w)