This commit is contained in:
Yael-II
2025-01-19 17:31:02 +01:00
parent 34371f3532
commit 6b06be4a6b
27 changed files with 337 additions and 32 deletions

View File

@@ -61,6 +61,10 @@ def plot_poincare_sections(filelist: list, title:str = "") -> int:
while i < N:
i += 1
axs[i].axis('off')
if "linear" in title: kind = "linear"
elif "parallel" in title: kind = "parallel"
else: kind = "error"
fig.savefig("pcs_{}.pdf".format(kind))
return 0
print("\033[32m"
+ "[P]arallel or [L]inear algorithm result, or [B]oth?"