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.
.T我想知道函数中的含义是什么np.vstack(array1, array2, array3).T?
.T
np.vstack(array1, array2, array3).T
ndarray.T:转置后的数组。
.T 表示堆叠数组的转置。