“transposition nupy” Réponses codées

transposition nupy

ndarray.T

x = np.array([[1.,2.],[3.,4.]])
>>> x
array([[ 1.,  2.],
       [ 3.,  4.]])
>>> x.T
array([[ 1.,  3.],
       [ 2.,  4.]])
>>> x = np.array([1.,2.,3.,4.])
>>> x
array([ 1.,  2.,  3.,  4.])
>>> x.T
array([ 1.,  2.,  3.,  4.])
Active Programmer

Transposer la matrice en python sans 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
  
Heron

Transpose d'une matrice dans Python Numpy

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

transposer la 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]])
Distinct Dingo

Python Numpy Transsose Function Syntaxe

numpy.transpose(a, axes=None)
Outrageous Ostrich

Réponses similaires à “transposition nupy”

Questions similaires à “transposition nupy”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code