gpt4 book ai didi

Python - 找到2个图的所有交点

转载 作者:太空宇宙 更新时间:2023-11-04 05:47:42 25 4
gpt4 key购买 nike

我试图找到两个图的所有交点并将它们显示在最终图上。我环顾四周并尝试了多种方法,但无法获得我正在寻找的东西。

目前,我试图生成一个列表,其中将列出交点,但我不断收到以下错误:

The truth value of an array with more than one element is ambiguous. Use a.any() or a.all().

import numpy as np
from scipy.optimize import fsolve
import matplotlib.pyplot as plt


x = np.arange(-7.0, 7.0, 0.05)

def y(x):
return np.sin(x)*(0.003*x**4 - 0.1*x**3 + x**2 + 4*x + 3)

def g(x):
return -10 * np.arctan(x)

def intersection(x):
if (y(x) - g(x)) == 0:
print y.all(x)

plt.plot(x, y(x), '-')
plt.plot(x, g(x), '-')

plt.show()

最佳答案

类似于:

Intersection of two graphs in Python, find the x value:

import numpy as np
from scipy.optimize import fsolve
import matplotlib.pyplot as plt


x = np.arange(-7.0, 7.0, 0.05)

y = np.sin(x)*(0.003*x**4 - 0.1*x**3 + x**2 + 4*x + 3)

g = -10 * np.arctan(x)

def intersection():
idx = np.argwhere(np.isclose(y, g, atol=10)).reshape(-1)
print idx

plt.plot(x, y, '-')
plt.plot(x, g, '-')

plt.show()

intersection()

编辑:您不使用函数,而是使用值列表

关于Python - 找到2个图的所有交点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31541080/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com