RosettaCodeData/Task/Matrix-exponentiation-operator/PicoLisp/matrix-exponentiation-operator.l
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

11 lines
224 B
Text

(de matIdent (N)
(let L (need N (1) 0)
(mapcar '(() (copy (rot L))) L) ) )
(de matExp (Mat N)
(let M (matIdent (length Mat))
(do N
(setq M (matMul M Mat)) )
M ) )
(matExp '((3 2) (2 1)) 3)