I have two arrays of different shapes that I would like to broadcast together:
- array1: (1460,)
- array2: (1462,)
Obviously while trying to broadcast array together it returns:
ValueError: operands could not be broadcast together with shapes (1460,) (1462,)
The two array are time series, but array1 is missing the first and last values in comparison with array2.
Does anyone can point me out some tools or solution in order to broadcast together 1D array of different shapes?