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}')
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}')
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))
transpose matrices numpy
import numpy as np
A = [1, 2, 3, 4]
np.array(A).T # .T is used to transpose matrix
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us