The matpow command takes two arguments, a square matrix and an integer. matpow returns the corresponding power of the matrix, computed using the Jordan form. Input:
Output:
Notice that jordan([[1,2],[2,1]]) returns [[1,-1],[1,1]],[[3,0],[0,-1]].