RosettaCodeData/Task/Matrix-exponentiation-operator/PicoLisp/matrix-exponentiation-operator.l
2023-07-01 13:44:08 -04: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)