“Concaténation du tableau dans Python” Réponses codées

Tableaux de fusion Numpy

>>> a = np.array([[1, 2], [3, 4]])
>>> b = np.array([[5, 6]])
>>> np.concatenate((a, b), axis=0)
array([[1, 2],
       [3, 4],
       [5, 6]])
>>> np.concatenate((a, b.T), axis=1)
array([[1, 2, 5],
       [3, 4, 6]])
Joyous Jay

Concaténation du tableau dans Python

#// required library
import numpy as npy

#// define 3 (1D) numpy arrays
arr1 = npy.array([10, 20, 30])
arr2 = npy.array([40, 50, 60])
arr3 = npy.array([70, 80, 90])

arrCon = npy.concatenate([arr1, arr2, arr3])
print(arrCon)

#// concatenation can also happen with 2D arrays
arr1_2d = npy.array([
  [10, 20, 30],
  [40, 50, 60]
])
arr2_2d = npy.array([
  [11, 22, 33],
  [44, 55, 66]
])

arr_2dCon = npy.concatenate([arr1_2d, arr2_2d])
print(arr_2dCon)
ST111

Réponses similaires à “Concaténation du tableau dans Python”

Questions similaires à “Concaténation du tableau dans Python”

Plus de réponses similaires à “Concaténation du tableau dans Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code