diff options
Diffstat (limited to 'determ.scm')
-rw-r--r-- | determ.scm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) |