Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Xenharmonic Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:56, 6 August 2026 Eliora talk contribs created page User:Eliora/Worst EDOs (Created page with "<code>import numpy as np import matplotlib.pyplot as plt phi = (1 + np.sqrt(5)) / 2 tau = 1 / phi**2 alpha = 2 * phi beta = 1 x = np.linspace(0, 0.5, 1000) y = x**alpha * (0.5 - x)**beta y /= y.max() plt.figure(figsize=(8,4)) plt.plot(x, y, lw=2) plt.axvline(tau, color='red', ls='--', label=r'$\tau=1/\varphi^2$') plt.xlabel("Error") plt.ylabel("Score") plt.title("Golden-ratio Beta-style bump") plt.grid(True) plt.legend() plt.show()</code> <code>import numpy as np...")