Let say we have array x
x = np.array([1, 2, 3, 99, 99, 3, 2, 1])
x1, x2, x3 = np.split(x, [3, 6])
I want to use append this two splited array let say x1 and x2 I want to Concatenate like [1, 2, 3, 2, 1] If I am using for Concatenate
x4 = x1+x3
x4
We are getting error like ValueError: operands could not be broadcast together with shapes (3,) (2,)
What we can do for Concatenation two splited array . can you please help me with this