Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I'll start of with the hugely ugly create lists of vectors, append and create vector again.

>>> v1 = vector([1,2])
>>> v2 = vector([3,4])
>>> vector( list(v1) + list(v2) )
(1,2,3,4)

I'll start of off with the hugely ugly create lists of from vectors, append and create vector again.

>>> v1 = vector([1,2])
>>> v2 = vector([3,4])
>>> vector( list(v1) + list(v2) )
(1,2,3,4)