Solved Task 2a
This commit is contained in:
parent
dd30d5e591
commit
12a91d3e05
|
@ -18,4 +18,10 @@ for x_value in x:
|
||||||
yg = np.append(yg, g(x_value))
|
yg = np.append(yg, g(x_value))
|
||||||
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.
|
||||||
|
|
Loading…
Reference in New Issue