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 つあります。
a = np.array([1,2,3]) b = np.array([4,5,6])
これらの配列に適用して次の出力を取得できる NumPy 関数はありますか?
[[1,4],[2,5][3,6]]
np.vstack((a,b)).T
戻り値
array([[1, 4], [2, 5], [3, 6]])
と
np.vstack((a,b)).T.tolist()
必要なものを正確に返します:
[[1, 4], [2, 5], [3, 6]]