I've looked hard and failed to find any convincingly standard algebraic notation for such. I have a specific problem in mind. It is the transformation of this matrix:
$\mathrm{W} = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 0.25 & 0 \\ 0 & 0.75 & 0 \\ 0 & 0 & 1 \\ \end{bmatrix} $
into this one:
$\mathrm{A} = \begin{bmatrix} 1 & 0 \\ -0.25 & 0.25 \\ -0.75 & 0.75 \\ 0 &-1 \\ \end{bmatrix} $
It's rather easy to see how to do that column by column, basically:
$a_{i,j} = w_{i,j} - w_{i,j+1}$
and I can write code do that but what I'm look for is a nice algebraic nomenclature for the operation, ideally in a standard matrix notation such that I might write:
$\mathrm{A} = f(\mathrm{W})$
and I could write the function f algebraically somehow. I can invent a notation easily enough, for example:
$\mathrm{A} = \mathrm{W}>>1 - \mathrm{W}<<1$
where:
$>>$ is a right shift operator which shifts each column one to right losing the right most column and reducing the number of columns by 1.
$<<$ is a left shift operation which shifts each column one to the left losing the first column and reducing the number of columns by 1.
But I made that up. And of course we can work on transposes and use row operators if they exist instead. By quest here is for the most standard, widely understood and used algebraic notation if it exists, and ideally a reference I could cite that documents it. I've failed to find any such thing.