gpt4 book ai didi

python - 使用 Numpy 和 Pyplot 进行条件绘图

转载 作者:太空宇宙 更新时间:2023-11-03 13:13:41 27 4
gpt4 key购买 nike

我正在尝试绘制一个有条件定义的函数。具体来说:U(x) = (2**delta)/((D-d)**delta)*(D/2 - (x-x0))**delta ,对于 abs(x-x0) 小于 D/2 和 0否则。

但我的问题是我想将 x、x0 作为 numpy 数组,因为这就是我在其余实际代码中使用它们的方式。

我已经设置了以下示例:

import numpy as np
import matplotlib.pyplot as plt
AD = 0.2
D = 0.4
delta = 8

def Parabolic(x, delta, D, AD):
x0 = np.round(x)
tempx = np.abs(x-x0)
tempD = D/2*np.ones(len(x))
if tempx<tempD:
return ((2**delta)/(D-AD)**delta)*(D/2 - (x-x0))**delta
else:
return 0

figure = plt.figure(figsize=(10,8), dpi=72)
xmin = -1.0
xmax = 1.0
X = np.linspace(xmin,xmax,1000)
plt.plot(X, Parabolic(X, delta=8, D=0.4, AD=0.2))

显然这个例子不起作用,因为行 tempx<tempD引发列表的真值不明确的错误。

我搜索了 numpy 的文档并找到了函数 np.less(tempx, tempD)。但是如果我替换 tempx < tempDnp.less(tempx, tempD)它仍然不起作用,因为我再次要求整个列表的真值。我知道问题不在于 numpy,而是我无法理解如何使用 numpy 提供的逻辑函数。

如果这在另一篇文章中以某种方式回答,我很抱歉,我在这个论坛中进行了搜索,但除了 curve() 之外找不到其他内容。方法。但是我想保留我的 numpy.array 格式以用于我的实际代码。我敢打赌答案一定很简单,我就是想不出来。

最佳答案

尝试使用 numpy 逻辑数组:

import numpy as np
import matplotlib.pyplot as plt
AD = 0.2
D = 0.4
delta = 8

def Parabolic(x, delta, D, AD):
rtn_arr = np.zeros(len(x))
x0 = np.round(x)
tempx = np.abs(x-x0)
tempD = D/2*np.ones(len(x))
lgc_arr = tempx<tempD
x_cut = x[lgc_arr]
x0_cut = x0[lgc_arr]
rtn_arr[lgc_arr] = ((2**delta)/(D-AD)**delta)*(D/2 - (x_cut-x0_cut))**delta
return rtn_arr

figure = plt.figure(figsize=(10,8), dpi=72)
xmin = -1.0
xmax = 1.0
X = np.linspace(xmin,xmax,1000)
plt.plot(X, Parabolic(X, delta=8, D=0.4, AD=0.2))

关于python - 使用 Numpy 和 Pyplot 进行条件绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36359861/

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