#!/usr/bin/env python3
from PyAna import *

x = np.linspace(-5.0,5.0,1000)
plt.plot(x,np.sin(x)**2)
plt.title('sin(x)^2')
plt.show()
