import numpy as np
import matplotlib.pyplot as plt
x=np.linspace(0,2*np.pi,50,endpoint=True)
S=np.sin(x)
C=np.cos(x)
plt.figure(figsize=(6,4))
