For example: ``` a = np.random.random(10) a[5] = 1e9 a = np.ma.masked_equal(a, 1e9) b = np.convolve(a, np.ones(4)/4.) ``` gives incorrect results.