transpose of a matrix in python code example

Example 1: transpose matrix numpy

>>> a = np.array([[1, 2], [3, 4]])
>>> a
array([[1, 2],
       [3, 4]])
>>> a.transpose()
array([[1, 3],
       [2, 4]])
>>> a.transpose((1, 0))
array([[1, 3],
       [2, 4]])
>>> a.transpose(1, 0)
array([[1, 3],
       [2, 4]])

Example 2: transpose matrix python

arr = list(list(x) for x in zip(*arr))

Example 3: how to find the transpose of a matrix in python

import numpy as np

arr1 = np.array([[1, 2, 3], [4, 5, 6]])

print(f'Original Array:\n{arr1}')

arr1_transpose = arr1.transpose()

print(f'Transposed Array:\n{arr1_transpose}')

Example 4: transpose of a matrix using numpy

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

M.transpose()

Tags:

Misc Example