Numpy Linespace不工作

时间:2016-07-08 16:41:15

标签: python numpy matplotlib plot

所以我从数据文件中插入并获得了一个函数。后来,我使用linspace创建x值,然后插入函数。但是,当我这样做时,x范围扩大到100.我不明白它为什么会这样做。我该如何解决这个问题?enter image description here

x = np.loadtxt("/Users/shawn/Desktop/VDFDensityfinalz.dat", unpack = True)
y = np.loadtxt("/Users/shawn/Desktop/VDFDensityfinalshift.dat", unpack = True)
f = interp1d(x, y, kind = 'cubic')
xnew = np.linspace(0.0414, 1.0414,100)
plt.plot(f(xnew))

1 个答案:

答案 0 :(得分:9)

不是linspace问题,而是你的plot功能。如果您使用左plt.plot(xnew, f(xnew)),您将获得所需的图表。