Question #1250   Proposée par Answiki le 13/05/2021 à 20:22:53 UTC

Comment additionner des np.array en Python ?

Answer   Submitted by Answiki on 05/13/2021 at 08:21:22 PM UTC

Le moyen le plus simple d'additionner deux tableaux (np.array) en Python est d'utiliser la méthode np.add(). Voici un exemple :

import numpy as np
 
A = np.array([1, 2, 3, 4])
B = np.array([0, 2, 4, 5])

# Addition : R = A + B
R = np.add(A, B)

# R = [1 4 7 9]
print(R)

5 events in history
Question by Answiki 05/13/2021 at 08:22:53 PM
Comment additionner des np.array en Python ?
Question by Answiki 05/13/2021 at 08:21:52 PM
Comment additionner des tableaux en Python ?
Answer by Answiki on 05/13/2021 at 08:21:22 PM

Le moyen le plus simple d'additionner deux tableaux (np.array) en Python est d'utiliser la méthode np.add(). Voici un exemple :

import numpy as np
 
A = np.array([1, 2, 3, 4])
B = np.array([0, 2, 4, 5])

# Addition : R = A + B
R = np.add(A, B)

# R = [1 4 7 9]
print(R)

Answer by Answiki on 05/13/2021 at 08:21:07 PM

Le moyen le plus simple d'additionner deux tableaux (np.array) en Python et d'utiliser la méthode np.add(). Voici un exemple :


import numpy as np
 
A = np.array([1, 2, 3, 4])
B = np.array([0, 2, 4, 5])

# Addition : R = A + B
R = np.add(A, B)

# R = [1 4 7 9]
print(R)

Question by Answiki 05/13/2021 at 08:17:12 PM
Comment additionner deux tableaux en Python ?
# ID Query URL Count
0 2794 comment additionner des array dans python https://fr.ans.wiki/1250/comment-additionner-des-np-array-en-python 1

Icons proudly provided by Friconix.