参考for循环中的数组

问题描述 投票:1回答:2

假设我有3个包含浮点数的Numpy数组,其名称如下:一二三。

是否可以通过以下方式在for循环中引用它们:

list=one two three

for arr in list:
    arr=arr[2,1]+1

上面的例子显然不起作用,但我想知道是否有办法做到这一点?

python python-3.x numpy for-loop
2个回答
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

0
投票

我认为如果你将列表变量列为一个列表,它会起作用:

list=[one, two, three]
for arr in list:
    arr=arr[2,1]+1
© www.soinside.com 2019 - 2024. All rights reserved.