假设我有3个包含浮点数的Numpy数组,其名称如下:一二三。
是否可以通过以下方式在for循环中引用它们:
list=one two three
for arr in list:
arr=arr[2,1]+1
上面的例子显然不起作用,但我想知道是否有办法做到这一点?
您需要指定保存值的位置:
arr[2,1] = arr[2,1] + 1
要不就:
arr[2,1] += 1
所以整个代码变成:
import numpy as np
one = np.arange(6).reshape(3, 2)
two = np.arange(10).reshape(5, 2)
arrays = [one, two]
for arr in arrays:
arr[2, 1] += 1
我认为如果你将列表变量列为一个列表,它会起作用:
list=[one, two, three]
for arr in list:
arr=arr[2,1]+1