How to concatenate 2 vectors in a third ...
Hi. I can't find in the documentation an elegant solution for this quite simple question :
a = vector([1,2,3])
b = vector([4,5])
How to find c = (1,2,3,4,5)
a+ b doesn't works like in Python ...