Comment puis-je tracer les 3 fonctions suivantes (c'est-à sin
- dire , cos
et l'addition), sur le domaine t
, dans 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