aboutsummaryrefslogtreecommitdiffstats
path: root/determ.scm
diff options
context:
space:
mode:
Diffstat (limited to 'determ.scm')
-rw-r--r--determ.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/determ.scm b/determ.scm
index 30dabbc..be7e00f 100644
--- a/determ.scm
+++ b/determ.scm
@@ -64,7 +64,7 @@
(else (slib:error 'not 'matrix matrix))))
;;@body
-;;Returns the (ones-based) array form of @1.
+;;Returns the array form of @1.
(define (matrix->array matrix)
(cond ((array? matrix)
(if (not (eqv? 2 (array-rank matrix)))
@@ -157,7 +157,7 @@
;;@body
;;@1 must be a square matrix.
-;;If @1 is singlar, then @0 returns #f; otherwise @0 returns the
+;;If @1 is singular, then @0 returns #f; otherwise @0 returns the
;;@code{matrix:product} inverse of @1.
(define (matrix:inverse matrix)
(let* ((mat (matrix->lists matrix))