Answers for "how to find transpose of 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

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

Python Answers by Framework

Browse Popular Code Answers by Language