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