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)
2 | No.2 Revision |
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)