diff --git a/Schenk_Brandenberger_S3_Aufg4.py b/Schenk_Brandenberger_S3_Aufg4.py index be34cdf..ffd9627 100644 --- a/Schenk_Brandenberger_S3_Aufg4.py +++ b/Schenk_Brandenberger_S3_Aufg4.py @@ -3,4 +3,13 @@ import matplotlib.pyplot as plt import math def h(x): - pass \ No newline at end of file + return math.sqrt(100 * math.pow(x,2) - 200 * x + 99) +xStart = 1.1 +xStop = 1.31 +xStep = math.pow(10,-7) + +x = np.arange(xStart,xStop + xStep,xStep) +y = [h(x_val) for x_val in x] + +plt.plot(x,y, label='h(x)') +plt.show()