Answers for "what is transpose of matrix code 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
1

transpose a matrix in python

matrix = ((0, 1), (3, 4), (6, 7))
#Transpose matrix from 3x2 to 2x3

matrix_transpose = tuple(zip(*data))
print(data_transpose)

#Output
((0, 3, 6), (1, 4, 7), (2, 5, 8))
Posted by: Guest on August-21-2021

Code answers related to "what is transpose of matrix code python"

Python Answers by Framework

Browse Popular Code Answers by Language