Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
同じ数の行を持つ 2 つの numpy 配列 A と B があります。新しい配列 C が必要です。これは、右側に B が追加された A です。それを行う関数が見つかりません。どうすればいいですか?
>>> import numpy as np >>> a = np.array([[1, 2, 3], [4, 5, 6]]) >>> b = np.array([[7, 8, 9], [10, 11, 12]]) >>> np.hstack( (a, b) ) array([[ 1, 2, 3, 7, 8, 9], [ 4, 5, 6, 10, 11, 12]])