请考虑以下代码:
a = numpy.array([1,2,3,4])
b = numpy.array([5,6,7,8])
# here a new array (b*2) will be created and name 'a' will be assigned to it
a = b * 2
那么,numpy可以将b*2
的结果直接写入已经为a
分配的内存中,而无需分配新的数组吗?
答案 0 :(得分:3)
是的,这是可能的 - 您需要使用np.multiply
及其out
参数:
np.multiply(b, 2, out=a)
数组a
现在填充了b * 2
的结果(并且没有分配新内存来保存函数的输出)。
所有NumPy的ufunc都有out
参数,在使用大型数组时尤其方便;通过允许重用数组,有助于将内存消耗降至最低。唯一需要注意的是,数组必须具有正确的大小/形状才能保存函数的输出。