W3School TIY Editor

  • W3School 在线教程
  • 改变方向
  • 暗黑模式
​x
 
from scipy.interpolate import Rbf
import numpy as np
​
xs = np.arange(10)
ys = xs**2 + np.sin(xs) + 1
​
interp_func = Rbf(xs, ys)
​
newarr = interp_func(np.arange(2.1, 3, 0.1))
​
print(newarr)