From 3593cb0b0b5ab282ac7b375982b731bafa57833e Mon Sep 17 00:00:00 2001 From: "navid.sassan" Date: Tue, 22 Sep 2020 17:34:04 +0200 Subject: [PATCH] solved ex1 --- serie1/IT19ta_ZH7_S1_Aufg1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/serie1/IT19ta_ZH7_S1_Aufg1.py b/serie1/IT19ta_ZH7_S1_Aufg1.py index 8efd428..a6e39b3 100755 --- a/serie1/IT19ta_ZH7_S1_Aufg1.py +++ b/serie1/IT19ta_ZH7_S1_Aufg1.py @@ -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)