Answers for "matrix transpose in python 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
1

transpose matrix in python without numpy

def transpose(matrix):
    rows = len(matrix)
    columns = len(matrix[0])

    matrix_T = []
    for j in range(columns):
        row = []
        for i in range(rows):
           row.append(matrix[i][j])
        matrix_T.append(row)

    return matrix_T
Posted by: Guest on February-08-2021

Code answers related to "matrix transpose in python using numpy"

Python Answers by Framework

Browse Popular Code Answers by Language