“comment trouver la transposition d'une matrice en 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 Matrix Python

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

Réponses similaires à “comment trouver la transposition d'une matrice en python”

Questions similaires à “comment trouver la transposition d'une matrice en python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code