In MARK+3 (src/db.lisp), quiet warning from SBCL about "Derived type conflicting...
[maxima.git] / share / contrib / gentran / test / det.tem
blob25adeb419a21c3c0691db97cdb6a9e03dc11c3a7
1 real*8 function det(m)
2 real*8 m(3,3)
3 <<
4 m : genmatrix(m, 3,3, 1,1)$
5 gentran( rsetq( det, determinant(m) ) )$
6 >>
7 return
8 end