“Transpose Matrix Python” Réponses codées

comment trouver la transposition d'une matrice en 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}')
Clear Cat

Transpose d'une matrice dans Python Numpy

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

Transpose Matrix Python

arr = list(list(x) for x in zip(*arr))
Happy Hawk

Transposer une matrice en 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))
Kwams

Réponses similaires à “Transpose Matrix Python”

Questions similaires à “Transpose Matrix Python”

Plus de réponses similaires à “Transpose Matrix Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code