我偶尔会where
在 numpy 的 ufunc 中使用该子句。例如,以下内容:
import numpy as np
a = np.linspace(-1, 1, 10)
np.sqrt(a, where=a>0) * (a>0)
在 Numpy 1.12 及更早版本中,这曾经在可能的情况下给我平方根值,否则为零。
不过,最近我升级到了 numpy 1.13。上面的代码现在给了我以下错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: Automatic allocation was requested for an iterator operand, and it was flagged as readable, but buffering without delayed allocation was enabled
我认为这正是该where
子句应该使用的方式,但也许我错了。所以我有两个问题:第一,这段代码有什么问题;其次,实现我的目标的推荐方法是什么?