from matplotlib import pyplot as plt
import numpy
x = numpy.arange(-10.0, 10.0)
y = numpy.sin(x) * x**3
plt.plot(x,y)
plt.show()