Solved Task 2a

This commit is contained in:
schrom01 2022-09-30 13:55:20 +02:00
parent dd30d5e591
commit 12a91d3e05
1 changed files with 7 additions and 1 deletions

View File

@ -19,3 +19,9 @@ for x_value in x:
plt.plot(x, yf) plt.plot(x, yf)
plt.plot(x, yg) plt.plot(x, yg)
plt.show() plt.show()
print("min f: ", min(yf), "max f: ", max(yf))
print("min g: ", min(yg), "max g: ", max(yg))
#Die Werte sind sehr klein (von e-14 bis e-12)
# sodass Rundungsfehler entstehen wenn die Werte als Fliesskommazahlen
# zwischengespeichert werden.