Answers for "how to transpose a matrix in numpy"

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

transpose matrices numpy

import numpy as np

A = [1, 2, 3, 4]
np.array(A).T # .T is used to transpose matrix
Posted by: Guest on May-23-2020
0

transpose of a matrix using numpy

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

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

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

Python Answers by Framework

Browse Popular Code Answers by Language