# 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, 1, 1000) y = 1 / (x + 0.007) - 100 fig, ax = plt.subplots () ax.set_xlim ([0.00, 1.01]) ax.set_ylim ([0.00, 1.01]) ax.set (xlabel = "x", ylabel = "z") ax.set_aspect ("equal") ax.plot (x, y, color = "red") plt.show ()