gpt4 book ai didi

python - 使用 np.where()[0]

转载 作者:行者123 更新时间:2023-12-05 05:14:20 26 4
gpt4 key购买 nike

我的代码检测阈值以下的所有点,然后定位起点和终点。

below = np.where(self.data < self.threshold)[0]


startandend = np.diff(below)
startpoints = np.insert(startandend, 0, 2)
endpoints = np.insert(startandend, -1, 2)
startpoints = np.where(startpoints>1)[0]
endpoints = np.where(endpoints>1)[0]
startpoints = below[startpoints]
endpoints = below[endpoints]

我真的没有在 np.where() 函数之后使用 [0] 在这里

最佳答案

below = np.where(self.data < self.threshold)[0]

表示:

take the first element from the tuple of ndarrays returned by np.where() and assign it to below.

关于python - 使用 np.where()[0],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52649568/

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