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
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] ]
|
|---|