“Smooth Interpolation Python” Code-Antworten

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)
Famous Flamingo

Smooth Interpolation Python

spl.set_smoothing_factor(0.5)
plt.plot(xs, spl(xs), 'b', lw=3)
plt.show()
Famous Flamingo

Ähnliche Antworten wie “Smooth Interpolation Python”

Fragen ähnlich wie “Smooth Interpolation Python”

Weitere verwandte Antworten zu “Smooth Interpolation Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen