Answers for "how to find the transpose of a matrix in python"

0

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}')
Posted by: Guest on April-11-2021
0

transpose matrix python

arr = list(list(x) for x in zip(*arr))
Posted by: Guest on August-03-2020

Code answers related to "how to find the transpose of a matrix in python"

Python Answers by Framework

Browse Popular Code Answers by Language