Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个数组x,y带有一个函数的坐标。
x
y
例子:
x=[0,1,2,3,4,5] y=[0,1,5,20,30,32]
pylab.plot(x,y)向我展示了一个平滑的功能。
pylab.plot(x,y)
有没有办法获得x-Value for y=3?
y=3
问候
您应该可以使用numpy.interp它。
numpy.interp
例如:
numpy.interp(3.,y,x) #1.5
请注意,这仅适用于您的 y 值是单调的。如果您的 y 值不是单调的,则无法保证您的 y->x 映射是唯一的。