How do I interpret this "do convolutions" diagram?
1) How are the results computed?
2) When looking at this part: "x[n-k]" Do you interpret convolutions as delays or time reversals?
$ y[n]= \sum_{k=0}^{M} h[k]x[n-k] = h[n]*x[n]$
$ h[n] = \delta[x] - \delta[n-1] + 2\delta[n-2] - \delta[n-3]+ \delta[n-4] $
$x[n-k]$ is a time delay, not a time reversal (which would be something along the lines $x[-n]$).If you think of $x[n-k]$ as a function of $k$, then $x$ is first time reversed, then shifted forward by $n$.