Deren Dohoda <deren.dohoda@gmail.com>
This library is used to perform some simple matrix arithmetic like multiplication, transposition, addition, and inversion. It is truly "simple" and very naive in its implementation but it will do its job without much overhead from typed racket.
'((1)(2)(-2))
procedure
( matrix-expt me)→matrix?
m:matrix?
procedure
( determinant m)→number?
m:matrix?
procedure
( invert-matrix m)→(or/c matrix? boolean? )
m:matrix?