summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-08-03 17:02:09 -0400
committerDavid Thompson <dthompson2@worcester.edu>2022-08-03 17:02:09 -0400
commitfb6f27739d8d6aa918762990f0bc11966f17bf74 (patch)
tree7f13167de6b01e92238b0afb05b6100785426bc9
parent247999649c912d4242a489c01ad6df792ca613bf (diff)
math: matrix: Fix error in a comment.
-rw-r--r--chickadee/math/matrix.scm2
1 files changed, 1 insertions, 1 deletions
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)))