找到两条曲线的所有交点(非函数)

时间:2016-09-03 06:54:10

标签: python numpy matplotlib scipy

我找到类似这个主题的类似问题来查找2条曲线[1] [2]的所有交集,在所有这些曲线中我们都有函数,但如果我们想要找到非函数的这些交叉点怎么办?曲线?这是一个例子:

enter image description here enter image description here

我写的情节:

plt.plot(Enull,x, '-',label='E nullcline') 
plt.plot(x,Inull, '-',label='I nullcline')    

我将I中的E替换为具有单变量函数,然后我使用fzero来查找交叉点。如果我有E的近似值,请说: cross = np.array([0.05,0.1,0.45]),问题解决了。 那么问题是如何找到这些近似的交叉值? 感谢任何指南。

python code in my dropbox

0 个答案:

没有答案