From 24075f617d8995d17c78cd40129a4209b6b9d71f Mon Sep 17 00:00:00 2001 From: Deniz Donmez Date: Thu, 11 Sep 2025 16:42:40 +0300 Subject: [PATCH] Update numethods/orthogonal.py --- numethods/orthogonal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numethods/orthogonal.py b/numethods/orthogonal.py index 7687297..fc8eef9 100644 --- a/numethods/orthogonal.py +++ b/numethods/orthogonal.py @@ -123,6 +123,6 @@ class LeastSquaresSolver: ] # Take only first n entries Qtb = Vector(Qtb_full[: self.A.n]) - # Extract leading n×n block of R + # Extract leading nxn block of R Rtop = Matrix([R.data[i][: self.A.n] for i in range(self.A.n)]) return backward_substitution(Rtop, Qtb)