>>> from pandac.PandaModules import Vec3
>>> import numpy
>>> l = []
>>> l.append( Vec3(1,1,1) )
>>> l.append( Vec3(1,1,1) )
>>> l.append( Vec3(1,1,1) )
>>> Vec3(1,1,1)+Vec3(1,1,1)
Vec3(2, 2, 2)
>>> sum(l)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'int' and 'libpanda.Vec3'
>>> numpy.sum(l)
9.0
>>>
i want some fast (fast == not for loop in pure python but numpy velocity) method to achive:
>>> my_smart_sum(l)
Vec3(3,3,3)
Try this:
sum(l, start=Vec3(0,0,0))
Or, with numpy, this:
numpy.sum(l, axis=0)
The speed depends in the implementation of the vector-addition. You should use timeit
to determine which method is fastest. This could look something like this:
python -m timeit "import numpy; foo = [[1,1,1],[1,1,1]]" "numpy.sum(foo, axis=0)"
10000 loops, best of 3: 46.5 usec per loop
The first string you pass is the setup-statement - this will not be included in the timing. The second string you pass is the code you actually want to time. I don't know anything about pandac
, but sometimes number-crunching loops can be sped up a lot using Cython.