numpy.matrix.transpose — NumPy v1.21 Manual
numpy.org › generated › numpyJun 22, 2021 · numpy.matrix.transpose ¶ method matrix.transpose(*axes) ¶ Returns a view of the array with axes transposed. For a 1-D array this has no effect, as a transposed vector is simply the same vector. To convert a 1-D array into a 2D column vector, an additional dimension must be added. np.atleast2d (a).T achieves this, as does a [:, np.newaxis] .
numpy.ndarray.T — NumPy v1.25 Manual
https://numpy.org/doc/stable/reference/generated/numpy.ndarray.T.htmlVerkkotranspose Examples >>> a = np.array( [ [1, 2], [3, 4]]) >>> a array ( [ [1, 2], [3, 4]]) >>> a.T array ( [ [1, 3], [2, 4]]) >>> a = np.array( [1, 2, 3, 4]) >>> a array ( [1, 2, 3, 4]) >>> …
numpy.transpose — NumPy v1.25.dev0 Manual
numpy.org › generated › numpynumpy.transpose. #. Returns an array with axes transposed. For a 1-D array, this returns an unchanged view of the original array, as a transposed vector is simply the same vector. To convert a 1-D array into a 2-D column vector, an additional dimension must be added, e.g., np.atleast2d (a).T achieves this, as does a [:, np.newaxis] .