I'm trying to make sense of different notations used in DSP. This is sometimes quite hard since notation brackets like in x[n] are used both to denote a single value or a sequence.
In mathematics, the generalized Iverson bracket notation is:
$$[P]=\begin{cases} 1 & \textrm{if P is true}\\ 0 & \textrm{otherwise} \end{cases}$$
and Kronecker delta is noted either: $$\delta_{n,m}=\begin{cases} 1 & \textrm{if } n=m\\ 0 & \textrm{otherwise} \end{cases}$$
or:
$$[n=m]=\begin{cases} 1 & \textrm{if } n=m\\ 0 & \textrm{otherwise} \end{cases}$$
In DSP (example), $\delta_{n,m}$ is noted $\delta[n-m]$, a mix of the two mathematics forms I find confusing because as $\delta[n-m]$ is legitimate, then is $\delta[n-1-m]$ legitimate too?
My questions to experienced DSP community:
- Why this notation and not the mathematical one which seems more clear?
- Is $\delta[n-1-m]$ legitimate? If so, what is its signification?