diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-08-03 17:01:48 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-08-03 17:01:48 -0400 |
commit | 247999649c912d4242a489c01ad6df792ca613bf (patch) | |
tree | c7e17c6543661a4750913f8451911c856c60371b | |
parent | 44c1bb2b5b18fa5a1f8cb53547baccbdd6bc3e5e (diff) |
math: matrix: Add docstring to matrix3-inverse procedure.
-rw-r--r-- | chickadee/math/matrix.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chickadee/math/matrix.scm b/chickadee/math/matrix.scm index 095699c..ff53752 100644 --- a/chickadee/math/matrix.scm +++ b/chickadee/math/matrix.scm @@ -332,6 +332,7 @@ column-major format." (* g* invdet) (* (- h*) invdet) (* i* invdet))))) (define (matrix3-inverse matrix) + "Return the inverse of MATRIX." (let ((new (make-null-matrix3))) (matrix3-inverse! matrix new) new)) |