Re: [Numpy-discussion] Matrix powers

2008-04-06 Thread Nils Wagner
On Sun, 06 Apr 2008 10:55:35 +0200 "Nils Wagner" <[EMAIL PROTECTED]> wrote: > Hi all, > > I tried to use the new function matrix_power, but I >can't > find it. > matrix_power(array([[0,1],[-1,0]]),10) > Traceback (most recent call last): > File "", line 1, in ? > NameError: name 'matri

[Numpy-discussion] Matrix powers

2008-04-06 Thread Nils Wagner
Hi all, I tried to use the new function matrix_power, but I can't find it. >>> matrix_power(array([[0,1],[-1,0]]),10) Traceback (most recent call last): File "", line 1, in ? NameError: name 'matrix_power' is not defined >>> numpy.__version__ '1.0.5.dev4968' Am I missing something ? Nils __