So I'm a little lost here. I have a numpy array that contains multiple array within it. My goal is to sum all of the arrays INSIDE of the big array, resulting in a singular array containing those summed values.
I've already tried using np.sum() but this goes one step too far and sums everything returning a single integer value.
an example of what I am trying to accomplish: a = (array([1, 2, 3]), array([3, 4, 5])) **perform some steps and the desired result is: a = (array([4, 6, 8]))