配列の高次元ビューを使用して、余分な次元に沿って平均を取ることができます。
In [12]: a = np.arange(36).reshape(6, 6)
In [13]: a
Out[13]:
array([[ 0, 1, 2, 3, 4, 5],
[ 6, 7, 8, 9, 10, 11],
[12, 13, 14, 15, 16, 17],
[18, 19, 20, 21, 22, 23],
[24, 25, 26, 27, 28, 29],
[30, 31, 32, 33, 34, 35]])
In [14]: a_view = a.reshape(3, 2, 3, 2)
In [15]: a_view.mean(axis=3).mean(axis=1)
Out[15]:
array([[ 3.5, 5.5, 7.5],
[ 15.5, 17.5, 19.5],
[ 27.5, 29.5, 31.5]])
(a, b)
一般に、配列の形状のビンが必要な場合は、その形状を変更(rows, cols)
する必要があります.reshape(rows // a, a, cols // b, b)
。また、 の順序.mean
が重要であることに注意してください。たとえば、次元が 3 つしかないa_view.mean(axis=1).mean(axis=3)
ため、エラーが発生します。問題なく動作しますが、何が起こっているのかを理解するのが難しくなります。a_view.mean(axis=1)
a_view.mean(axis=1).mean(axis=2)
As is, the above code only works if you can fit an integer number of bins inside your array, i.e. if a
divides rows
and b
divides cols
. There are ways to deal with other cases, but you will have to define the behavior you want then.