In [1]:
%matplotlib inline
import math
import matplotlib.pyplot as plt
import numpy
x = numpy.arange(1,10,0.1)
y = numpy.sin(x)
plt.plot(x, y)
Out[1]:
In [ ]:
In [ ]: