正如您在下面看到的,我输入了我的代码,前两个块工作正常。但是,当我进行插值时,我开始遇到问题。显示的最大错误在最后,即:TypeError:'float'类型的对象没有len()
我还在学习这门语言,所以如果我的评论不好,请放轻松。
这是我的代码:
# Imported array of data from a text file.
q1, a1 = loadtxt("values.txt", unpack = True, skiprows = 1)
print q1
print a1
# Creating a while loop for this part of the code.
a = 3
b = -2
c = -9
q = 0.5
qt = 0.1
while q < 1.5:
print q, a
q += qt
a = a + b*qt
b = b + c*qt
# Interpolation
from scipy.interpolate import interp1d
f = interp1d(q,a,'cubic')
q1 = linspace(0.5,1.4,25)
a1 = f(q1)
plot(q1,a1, '-', q,a, 'o')
show()
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-5-de5ecb6dbfd0> in <module>()
1 # Interpolation
2 from scipy.interpolate import interp1d
----> 3 f = interp1d(q,a,'cubic')
4 q1 = linspace(0.5,1.4,25)
5 a1 = f(q1)
C:\Users\krazzy\AppData\Local\Enthought\Canopy32\User\lib\site-packages\scipy\interpolate\interpolate.pyc in __init__(self, x, y, kind, axis, copy, bounds_error, fill_value, assume_sorted)
355 assume_sorted=False):
356 """ Initialize a 1D linear interpolation class."""
--> 357 _Interpolator1D.__init__(self, x, y, axis=axis)
358
359 self.copy = copy
C:\Users\krazzy\AppData\Local\Enthought\Canopy32\User\lib\site-packages\scipy\interpolate\polyint.pyc in __init__(self, xi, yi, axis)
58 self.dtype = None
59 if yi is not None:
---> 60 self._set_yi(yi, xi=xi, axis=axis)
61
62 def __call__(self, x):
C:\Users\krazzy\AppData\Local\Enthought\Canopy32\User\lib\site-packages\scipy\interpolate\polyint.pyc in _set_yi(self, yi, xi, axis)
122 if shape == ():
123 shape = (1,)
--> 124 if xi is not None and shape[axis] != len(xi):
125 raise ValueError("x and y arrays must be equal in length along "
126 "interpolation axis.")
TypeError: object of type 'float' has no len()
感谢。