add codes.

This commit is contained in:
pandx 2025-11-13 14:48:48 +08:00
parent d0d1fc8098
commit dfe6dd1647
2 changed files with 3 additions and 3 deletions

View File

@ -753,7 +753,7 @@ class CalibrationDialog(QDialog):
print(f"top10_max 去除最大的数据后的平均值1{mean_max}")
mean_min = self.mean_without_min_optimized(result['top10_min'])
print(f"top10_min 去除最大的数据后的平均值2{mean_min}")
pp = mean_max - mean_min
pp = (mean_max - mean_min) / 100
if self.type_cb.currentIndex() == 2:
self.value_labels[self.type_index].setText(str(round(pp, 6)))
print(f"pp :{mean_max - mean_min}")

View File

@ -340,9 +340,9 @@ class SocketClientApp(QMainWindow):
msg.setWindowTitle("软件版本信息")
# 设置消息框的内容
msg.setText("软件版本号2.2\n"
msg.setText("软件版本号2.3\n"
"支持的分布式节点版本号2.2以上\n"
"更新日期2025-11-12")
"更新日期2025-11-13")
# 设置按钮
msg.setStandardButtons(QMessageBox.Ok)