我已经定义了一个包含if语句的函数。然后我想传入函数中的X数组,这是一个2D数组。我尝试使用np.all,但是虽然它没有给出错误,但它将所有X值设置为"如果abs(x)< L:&#34 ;.我怎样才能将2D数组(X)正确传递到函数中?
x = np.arange(-10.,15.+1.,1.)
y = np.arange(-4.,4.+0.1,0.1)
eps = 0.1
L = 2.
k = np.pi/(2.*L)
def q2(x):
if abs(x) < L:
return (((-3.*eps*np.cos(k*x))+(k*(np.sin(k*x)-np.exp(3.*eps*(x-L)))))/((9.*eps**2.) + k**2.))
if x > L:
return 0.
if x < -L:
return (-k*(1.+np.exp2(-6.*eps*L))*np.exp(3.*eps*(x+L)))/((9.*eps**2.) + k**2.)
def u2(x,y):
return 0.5*q2(x)*(y**2. - 3.)*np.exp(-0.25*y**2.)
X,Y = np.meshgrid(x,y)
vel_x=u2(X,Y)
答案 0 :(得分:0)
您可以使用numpy.where(CONDITION)
获取一系列索引,这些索引只能用于访问您当前感兴趣的x
部分:
def q2(x):
q = np.zeros(x.shape)
# for abs(x) < L
ind = np.where(np.abs(x) < L)
q[ind] = (((-3.*eps*np.cos(k*x[ind]))+(k*(np.sin(k*x[ind])-np.exp(3.*eps*(x[ind]-L)))))/((9.*eps**2.) + k**2.))
# for x < -L
ind = np.where(x < -L)
q[ind] = (-k*(1.+np.exp2(-6.*eps*L))*np.exp(3.*eps*(x[ind]+L)))/((9.*eps**2.) + k**2.)
return q