Answers for "np.transpose(x) array([[0, 2], [1, 3]])"

1

Python transpose np array

>>> a = np.array([[1, 2], [3, 4]])
>>> a
array([[1, 2],
       [3, 4]])
>>> a.transpose() #or a.T
array([[1, 3],
       [2, 4]])
Posted by: Guest on April-30-2021
0

np.transpose(x) array([[0, 2], [1, 3]])

>>> x = np.arange(4).reshape((2,2))
>>> x
array([[0, 1],
       [2, 3]])
Posted by: Guest on September-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language