solved ex1

This commit is contained in:
navid.sassan 2020-09-22 17:34:04 +02:00
parent cdc8984d9e
commit 3593cb0b0b

View File

@ -11,8 +11,8 @@ def funktion():
x = numpy.arange(-10, 10)
y = (x ** 5 - 5 * x ** 4 - 30 * x ** 3 + 110 * x ** 2 + 29 * x - 105)
plt.xlim(1100)
plt.ylim(1100)
plt.xlim(-6, 8)
plt.ylim(-2000, 2000)
plt.grid()
plt.plot(x, y)