2

ndarray は x**2 のような単純な関数でどのように機能しますか? 次のエラーが表示されます。

arr = array([3,4,5])
f = lambda x: x**2
print f(arr)     # works, but how?
print f(3)       # works
print f([3,4,5]) # will not work
#TypeError: unsupported operand type(s) for ** or pow(): 'list' and 'int'
print f((3,4,5)) # will not work
#TypeError: unsupported operand type(s) for ** or pow(): 'tuple' and 'int'

>>>f(arr)
#[ 9 16 25]
>>>f(3)
#9

最後に...

class Info(object):
    def __init__(self,x):
        self.a = x<
    def __pow__(self,x):
        for i in xrange(len(self.a)):
            self.a[i]**=x
        return self

a = Info([3,4])
f = lambda x:x**2
a = f(a)
print a.a
[9, 16]
4

1 に答える 1

5

ndarrayは演算子の動作を定義し**ますが、リストにはタプルは含まれません(ndarrayは通常、数値用であるのに対し、それらには任意のオブジェクトが含まれる可能性があります)。

于 2012-08-27T08:03:00.077 に答える