From fb6f27739d8d6aa918762990f0bc11966f17bf74 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 3 Aug 2022 17:02:09 -0400 Subject: math: matrix: Fix error in a comment. --- chickadee/math/matrix.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chickadee/math/matrix.scm b/chickadee/math/matrix.scm index ff53752..1a1e020 100644 --- a/chickadee/math/matrix.scm +++ b/chickadee/math/matrix.scm @@ -307,7 +307,7 @@ column-major format." (h (matrix3-ref bv 2 1)) (i (matrix3-ref bv 2 2)) ;; Calculate the determinants of the minor matrices of the - ;; inverse of the original matrix. + ;; transpose of the original matrix. (a* (- (* e i) (* f h))) (b* (- (* b i) (* c h))) (c* (- (* b f) (* c e))) -- cgit v1.2.3