Answers for "how to obtain transpose of a matrix using numpy"

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
0

transpose matrice numpy

>>> import numpy as np
>>> M = np.array([[1,2,3],[4,5,6],[7,8,9]])
>>> M
array([[1, 2, 3],
       [4, 5, 6],
       [7, 8, 9]])
>>> M.T
array([[1, 4, 7],
       [2, 5, 8],
       [3, 6, 9]])
Posted by: Guest on May-06-2021

Code answers related to "how to obtain transpose of a matrix using numpy"

Python Answers by Framework

Browse Popular Code Answers by Language