numpy.ndarrayの連結
以下記事を参考にしています。
http://tanukigraph.hatenablog.com/entry/2017/08/23/195756
忘れやすいのでメモ。
import numpy as np
a = np.array([[1,2],[3,4]])
b = np.array([[5,6],[7,8]])
c = np.array([[1,2],[3,4],[5,6]])
1. (2,2)×2 -> (4,2)
np.concatenate([a,b],axis=0)
# output
array([[1, 2],
[3, 4],
[5, 6],
[7, 8]])
※concatnateで次元を上げることはできない
2. (2,2)×2 -> (2,2,2)
パターン1
np.stack([a,b],axis=0)
# output
array([[[1, 2],
[3, 4]],
[[5, 6],
[7, 8]]])
パターン2
np.stack([a,b],axis=1)
array([[[1, 2],
[5, 6]],
[[3, 4],
[7, 8]]])
Author And Source
この問題について(numpy.ndarrayの連結), 我々は、より多くの情報をここで見つけました https://qiita.com/tnot_found/items/3d19c44d424cf0bc1405著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .