I'm looking at the example for convolutions here, and I can't quite understand how the output of a FIR filter can be interpreted. Obviously, it's just the convolution of the impulse response and the input, converting to the frequency domain, modifying the input, and converting back into the time domain. The part I don't get is, the input to the filter is of length $n$, and the output is of length $n + m - 1$.
Obviously, you can only output samples of the same input length, so how would you interpret this? Do you crop off part of the output sequence, do you take a sliding window weighted average, or what?
Could someone provide an example using a filter with input $\{4, -2, 2\}$ and output $\{4, 2, 8, 6, 0, 4\}$ (the example in the link above).