Solved Task 2a
This commit is contained in:
parent
dd30d5e591
commit
12a91d3e05
|
@ -19,3 +19,9 @@ for x_value in x:
|
|||
plt.plot(x, yf)
|
||||
plt.plot(x, yg)
|
||||
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.
|
||||
|
|
Loading…
Reference in New Issue