1
0
This commit is contained in:
2024-03-25 06:35:43 +03:00
parent b28600d160
commit 06c253e9e5
4 changed files with 447 additions and 2 deletions

View File

@@ -297,7 +297,7 @@ class MainWindow(QMainWindow):
self.solution_display.set_visible(True)
solution_text = "\n"
for i in range(x.shape[0]):
solution_text += f"x{i} = {x[i, 0]:.5f}"
solution_text += f"x{i + 1} = {x[i, 0]:.5f}"
if i < x.shape[0] - 1:
solution_text += "\n"
self.solution_display.set_text(solution_text)