So I have data, in the form of 2 numpy arrays, that look like the above when plotted. For some reason, when I add the 2 numpy arrays together, element-wise as such:
c = a + b
and then plot c, I get this:
All I'm doing is plot.plot(c)
But that doesn't make sense right? I shouldn't get the same exact plot as plot b (except shifted up) when adding those 2 together right? I'm really confused about this.


