NumPy的ufunc有
accumulate():
In [22]: np.multiply.accumulate([[1, 2, 3], [4, 5, 6]], axis=1)Out[22]: array([[ 1, 2, 6], [ 4, 20, 120]])
不幸的是,呼吁
accumulate()在
frompyfunc()“编Python函数失败,一个奇怪的错误:
In [32]: uadd = np.frompyfunc(lambda x, y: x + y, 2, 1)In [33]: uadd.accumulate([1, 2, 3])---------------------------------------------------------------------------ValueError Traceback (most recent call last)ValueError: could not find a matching type for <lambda> (vectorized).accumulate, requested type has type pre 'l'
这是将NumPy 1.6.1与Python 2.7.3结合使用。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)