Initial commit

This commit is contained in:
Hussein Kabbout 2020-09-22 17:21:08 +02:00
commit 0ae5119f67
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,21 @@
import numpy
import matplotlib.pyplot as plt
def funktion():
plt.figure()
plt.xlabel("x")
plt.ylabel("y")
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.grid()
plt.plot(x, y)
plt.show()
if __name__ == "__main__":
funktion()

View File

@ -0,0 +1,4 @@
if __name__ == "__main__":
pass

View File

@ -0,0 +1,4 @@
if __name__ == "__main__":
pass