尝试导入样条时SciPy导入错误

时间:2019-10-29 17:02:51

标签: python-3.x scipy python-3.6

我得到的错误行:

    from scipy.interpolate import spline
ImportError: cannot import name 'spline'

导致此问题的源代码是:

from scipy.interpolate import spline

我尝试了几种安装scipy的方法:

  • 使用conda install scipy
  • 的conda
  • 从PyCharm安装 enter image description here 但是他们都没有工作。有什么事发生吗?

2 个答案:

答案 0 :(得分:0)

spline不在scipy.interpolate模块中。您可以改用splrepUnivariateSpline。看看documentation中的可用功能。

答案 1 :(得分:0)

import matplotlib.pyplot as plt
import numpy as np
from scipy.interpolate import interp1d

x = np.linspace(0, 10, num=11, endpoint=True)
y = np.cos(-x**2/9.0)
f1 = interp1d(x, y, kind='nearest')
f2 = interp1d(x, y, kind='zero')
f3 = interp1d(x, y, kind='quadratic')

xnew = np.linspace(0, 10, num=1001, endpoint=True)
plt.plot(x, y, 'o')
plt.plot(xnew, f1(xnew), '-', xnew, f2(xnew), '--', xnew, f3(xnew), ':')
plt.legend(['data', 'nearest', 'zero', 'quadratic'], loc='best')
plt.show()