📜  python将一列数组乘以一个值 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:28.415000             🧑  作者: Mango

代码示例1
import numpy as np
# Let a be some 2d array; here we just use dummy data 
# to illustrate the method
a = np.ones((10,5))
# Multiply just the 2nd column by 5.2 in-place
a[:,1] *= 5.2

# Now get the cumulative sum of just that column
csum = np.cumsum(a[:,1])