Answers for "how to transpose matrix in numpy"

0

transpose matrice numpy

>>> import numpy as np
>>> M = np.array([[1,2,3],[4,5,6],[7,8,9]])
>>> M
array([[1, 2, 3],
       [4, 5, 6],
       [7, 8, 9]])
>>> M.T
array([[1, 4, 7],
       [2, 5, 8],
       [3, 6, 9]])
Posted by: Guest on May-06-2021
0

transpose of a matrix using numpy

M = np.matrix([[1,2],[3,4]])

M.transpose()
Posted by: Guest on April-13-2021
0

transpose of a matrix in python numpy

np.transpose(x)
array([[0, 2],
       [1, 3]])
Posted by: Guest on October-13-2021

Code answers related to "how to transpose matrix in numpy"

Python Answers by Framework

Browse Popular Code Answers by Language