From 7c64c595eb7be89f1080b6f7bb0410f5de049051 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Fri, 2 Sep 2022 21:31:31 +0200 Subject: [PATCH] Unused --- cy.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 cy.py diff --git a/cy.py b/cy.py deleted file mode 100644 index c6f1194..0000000 --- a/cy.py +++ /dev/null @@ -1,18 +0,0 @@ -from cycler import cycler -import numpy as np -import matplotlib.pyplot as plt - -x = np.linspace(0, 2 * np.pi, 50) -offsets = np.linspace(0, 2 * np.pi, 4, endpoint=False) -yy = np.transpose([np.sin(x + phi) for phi in offsets]) - - -plt.rc("axes", prop_cycle=cycler(linestyle=["-", "--", ":", "-."])) - -# fig, (ax0, ax1) = plt.subplots(nrows=2) -plt.plot(yy) -# ax0.set_title("Set default color cycle to rgby") - -# Add a bit more space between the two plots. -# fig.subplots_adjust(hspace=0.3) -plt.show()