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]