From 99d355be6b3be978ed19602b61ac650961d73fa2 Mon Sep 17 00:00:00 2001 From: marques <20172333133@m.scnu.edu.cn> Date: Wed, 21 May 2025 21:58:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=95=A3=E7=82=B9=E5=9B=BE?= =?UTF-8?q?=E7=BB=98=E5=88=B6=EF=BC=8C=E6=B7=BB=E5=8A=A0=E5=9D=90=E6=A0=87?= =?UTF-8?q?=E8=BD=B4=E6=A0=87=E7=AD=BE=E5=92=8C=E9=9B=B6=E6=B0=B4=E5=B9=B3?= =?UTF-8?q?=E7=BA=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- func/Module_approximately_align.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/func/Module_approximately_align.py b/func/Module_approximately_align.py index 0c85386..e585dd2 100644 --- a/func/Module_approximately_align.py +++ b/func/Module_approximately_align.py @@ -896,10 +896,16 @@ class MainWindow_approximately_align(QMainWindow): ax1 = self.fig.add_subplot(211) ax1.scatter(linspace(epoch_min, epoch_max, len(tho_bias_list)), tho_bias_list, alpha=0.2) + ax1.axhline(y=0, color='red', linestyle='--', alpha=0.3) + ax1.set_xlabel("Epoch") + ax1.set_ylabel("Tho Bias / s") ax1.set_title("THO") ax2 = self.fig.add_subplot(212) ax2.scatter(linspace(epoch_min, epoch_max, len(abd_bias_list)), abd_bias_list, alpha=0.2) + ax2.axhline(y=0, color='red', linestyle='--', alpha=0.3) + ax2.set_xlabel("Epoch") + ax2.set_ylabel("Abd Bias / s") ax2.set_title("ABD") self.fig.canvas.draw() @@ -922,8 +928,7 @@ class Data: self.processed_downsample_orgBcg = None self.processed_downsample_Tho = None self.processed_downsample_Abd = None - self.relate_list = None - self.relate_point = None + def open_file(self): if Path(Config["Path"]["Input_orgBcg"]).is_file():