(^,.^) power operation
t=A^b
t=A**b
t=A.^b
:A,t scalar, polynomial or rational matrix. : :b a scalar, a vector or a scalar matrix. :
Notes:
multiplications if p is a positive integer, and by diagonalization if not.
A=[1 2;3 4];
A^2.5,
A.^2.5
(1:10)^2
(1:10).^2
s=`poly`_(0,'s')
s^(1:10)