I want to concatenate two tuples in DolphinDB in the way similar to concatenating vectors.
For example, I have two tuples:
a=(1,2,3)
and
b=(4,5,6)
and I attempted to use
join
to obtain
re=(1,2,3,4,5,6)
However, the output is (1,2,3,(4,5,6)),which is same as the result of
a.append!(b)
How could I modify my script?