将多变量函数的积分定义为第二个函数python
我正在使用 python 仅对一个变量集成一个多变量函数(它是 x 和 theta 的函数,我正在对从 0 到 2*pi 的 theta 进行积分,因此结果是 x 的函数)。我尝试了以下方法:
import numpy as np
import scipy.integrate as inte
d=10.0
xvals=np.linspace(-d,d,1000)
def aIntegrand(theta,x):
return 1/(2*np.pi)*np.sin(2*np.pi*x*np.sin(theta)/d)**2
def A(x):
return (inte.quad(aIntegrand,0,2*np.pi,args=(x,))[0])**(1/2)
plt.plot(xvals,A(xvals))
plt.xlabel("x")
plt.ylabel("A(x)")
plt.show()
我收到以下错误:
TypeError: only size-1 arrays can be converted to Python scalars
我认为这是因为四元积分器的结果是一个包含两个元素的数组,而 python 不喜欢基于索引数组定义函数?不过,这是对问题的完整猜测。如果有人知道我如何解决这个问题并可以让我知道,那就太好了:)
第二次尝试
我已经成功地使用以下代码获得了积分图:
import numpy as np
import scipy.integrate as inte
import matplotlib.pyplot as plt
d=10.0
xvals=np.linspace(-d,d,1000)
thetavals=np.linspace(0.0,2*np.pi,1000)
def aIntegrand(theta,x):
return 1/(2*np.pi)*np.sin(2*np.pi*x*np.sin(theta)/d)**2
def A(x):
result=np.zeros(len(x))
for i in range(len(x)):
result[i]=(inte.quad(aIntegrand,0,2*np.pi,args=(x[i],))[0])**(1/2)
return result
def f(x,theta):
return x**2* np.sin(theta)
plt.plot(xvals,A(xvals))
plt.xlabel("x")
plt.ylabel("A(x)")
plt.show()
但这并没有给出 A(x) 作为函数,由于我定义它的方式,它需要一个数组形式的输入。我需要该函数与 aIntegrand 具有相同的形式,其中当给定参数返回单个值时,该函数可以重复集成。