# 2D-kromme import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7, 7] plt.rcParams["figure.autolayout"] = True x = np.linspace (0, 3, 1000) y = -0.64760301386 * x**2 + 1.6094757082 * x + 1 fig, ax = plt.subplots () ax.set_xlim ([0.00, 3.01]) ax.set_ylim ([0.00, 2.01]) ax.set (xlabel = "x", ylabel = "z") ax.set_aspect ("equal") ax.plot (x, y, color = "red") plt.show ()