Answers for "transpose array np"

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
0

np.transpose(x) array([[0, 2], [1, 3]])

>>> x = np.arange(4).reshape((2,2))
>>> x
array([[0, 1],
       [2, 3]])
Posted by: Guest on September-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language