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
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()
Utilisez simplement la fonction plot
comme suit
figure()
...
plot(t, a)
plot(t, b)
plot(t, c)