web-dev-qa-db-fra.com

Python: Définition d'un élément d'une matrice Numpy

Je suis assez novice en python. J'ai créé une matrice vide

a = numpy.zeros(shape=(n,n))

Maintenant, je peux accéder à chaque élément en utilisant

a.item(i,j)

Comment définir un index (i, j)?

25
Bruce

Voici comment:

a[i,j] = x
59
Can Berk Güder

Ou

a.itemset((i,j),x)
9
YOU

Essaye ça

a[i,j]=5
3
John La Rooy