web-dev-qa-db-fra.com

Comment tracer plusieurs fonctions sur la même figure, dans Matplotlib?

Comment puis-je tracer les 3 fonctions suivantes (c'est-à-dire sin, cos et l'addition), sur le domaine t, de la même figure?

from numpy import *
import math
import matplotlib.pyplot as plt

t = linspace(0, 2*math.pi, 400)

a = sin(t)
b = cos(t)
c = a + b
76
user3277335

Pour tracer plusieurs graphiques sur la même figure, vous devrez:

from numpy import *
import math
import matplotlib.pyplot as plt

t = linspace(0, 2*math.pi, 400)
a = sin(t)
b = cos(t)
c = a + b

plt.plot(t, a, 'r') # plotting t, a separately 
plt.plot(t, b, 'b') # plotting t, b separately 
plt.plot(t, c, 'g') # plotting t, c separately 
plt.show()

enter image description here

128
ThePredator

Peut-être une façon plus pythonique de le faire.

from numpy import *
import math
import matplotlib.pyplot as plt

t = linspace(0,2*math.pi,400)
a = sin(t)
b = cos(t)
c = a + b

plt.plot(t, a, t, b, t, c)
plt.show()

enter image description here

37
Jash Shah

Utilisez simplement la fonction plot comme suit

figure()
...
plot(t, a)
plot(t, b)
plot(t, c)
4
leeladam