Question #1259
Proposée par Answiki
le 14/05/2021 à 12:59:24 UTC
Comment additionner deux vecteurs en Python ?
Merged questions
Answer
Submitted by Answiki
on 05/14/2021 at 01:00:42 PM UTC
Le moyen le plus simple d'additionner deux vecteurs (np.array
) en Python est d'utiliser la méthode np.add()
. Voici un exemple :
>>> import numpy as np
# Vecteurs v et u
>>> v = np.array([[1],[2],[3]])
>>> u = np.array([[0],[2],[4]])
# Additionne les vecteurs
>>> print (np.add(v, u))
[[1]
[4]
[7]]
Answer by Answiki on 05/14/2021 at 01:00:42 PM
Le moyen le plus simple d'additionner deux vecteurs (np.array
) en Python est d'utiliser la méthode np.add()
. Voici un exemple :
>>> import numpy as np
# Vecteurs v et u
>>> v = np.array([[1],[2],[3]])
>>> u = np.array([[0],[2],[4]])
# Additionne les vecteurs
>>> print (np.add(v, u))
[[1]
[4]
[7]]
Question by Answiki 05/14/2021 at 12:59:24 PM
Comment additionner deux vecteurs en Python ?
# | ID | Query | URL | Count |
---|---|---|---|---|
0 | 2924 | Python additionner des vecteurs | https://fr.ans.wiki/1259/comment-additionner-deux-vecteurs-en-python | 1 |
1 | 2834 | python addition vectuer | https://fr.ans.wiki/1259/comment-additionner-deux-vecteurs-en-python | 1 |
2 | 2810 | python additionner scalaire vecteur | https://fr.ans.wiki/1259/comment-additionner-deux-vecteurs-en-python | 1 |
3 | 2124 | deux vecteur s python | https://fr.ans.wiki/1259/comment-additionner-deux-vecteurs-en-python | 1 |
4 | 1404 | addition vecteur python | https://fr.ans.wiki/1259/comment-additionner-deux-vecteurs-en-python | 1 |
Icons proudly provided by Friconix.