gpt4 book ai didi

python - numpy cumsum() 不起作用?

转载 作者:行者123 更新时间:2023-12-01 02:06:06 29 4
gpt4 key购买 nike

这是我的代码:

import numpy as np

a = [4,6,12]

np.cumsum(a)

print(a)

而不是得到 [4,10,22] ,我仍然得到[4,6,12] 。我很困惑。所以如果 cumsum()不是累计总和的方法,那我该怎么办?谢谢。

最佳答案

docstring of numpy.cumsum说:

Return the cumulative sum of the elements along the given axis.

这意味着它返回一个新数组。它不会修改现有数组。

关于python - numpy cumsum() 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49054927/

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