# Geparametriseerde 2D-kromme import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [8, 8] plt.rcParams["figure.autolayout"] = True t = np.linspace (0.1, 1000, 100000) x = np.cos (np.log (t)) y = np.sin (np.log (t)) fig, ax = plt.subplots () ax.set_xlim ([-1.1, 1.1]) ax.set_ylim ([-1.1, 1.1]) ax.plot (x, y, color = "red") plt.show ()