lesson_13_ex_1_17_18

import pylab
import numpy

x = numpy.linspace(-15,15,100)
y = x**5 + 24*x**2 - 100 + numpy.log(x)

pylab.plot(x,y)
pylab.show()

 

Posted in Uncategorized