# 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 = 0.5 * t * (np.sin (np.log (t)) + np.cos (np.log (t))) y = 0.5 * t * (np.sin (np.log (t)) - np.cos (np.log (t))) fig, ax = plt.subplots () ax.set_xlim ([-40, 3]) ax.set_ylim ([ -2, 12]) ax.plot (x, y, color = "red") plt.show ()