“tableau de numpy plat” Réponses codées

tableau de numpy plat

>>> a = np.array([[1,2], [3,4]])
>>> a.flatten()
array([1, 2, 3, 4])
CodeHunter

Python Numpy Ndarray Flat Fonction Exemple

# welcome to softhunt.net
# Python Program illustrating
# working of ndarray.flat()

import numpy as np

# Working on 1D iteration of 2D array
array = np.arange(15).reshape(5, 3)
print("2D array : \n",array )

# All elements set to 1
array.flat = 1
print("\nAll Values set to 1 : \n", array)

array.flat[3:6] = 8
array.flat[8:10] = 9
print("Changing values in a range : \n", array)
Outrageous Ostrich

Réponses similaires à “tableau de numpy plat”

Questions similaires à “tableau de numpy plat”

Plus de réponses similaires à “tableau de numpy plat” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code