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