NumPySciPy中的广义累积函数?

NumPySciPy中的广义累积函数?,第1张

NumPy / SciPy中的广义累积函数

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结合使用。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5620265.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存