in reply to Re^2: In PDL, how to raise a matrix $m to a power $v
in thread In PDL, how to raise a matrix $m to a power $v

can't you just multiply the PDL matrix by itself?

You can ... but it gives the result the OP doesn't want:
C:\>perl -MPDL -le "$x = pdl([0, 1], [2,3]);print $x; print $x * $x; p +rint $x ** 2;" [ [0 1] [2 3] ] [ [0 1] [4 9] ] [ [0 1] [4 9] ]

Cheers,
Rob