diff options
-rw-r--r-- | chickadee/math/matrix.scm | 2 |
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))) |