I'm looking for a transformation matrix (or set of transformation matrices) that transforms matrix $\mathbf A = \begin{pmatrix} a&b&i&j\\ c&d&k&l \\ e&f&m&n \\ g&h&o&p \end{pmatrix}$ into matrix $\mathbf B = \begin{pmatrix} -p&o&-h&g\\ -n&m&-f&e \\ -l&k&-d&c \\ -j&i&-b&a \end{pmatrix}$.
I tried multiplying $\mathbf A$ by the anti-diagonal identity matrix on the left and by $\begin{pmatrix} 1&0&0&0\\ 0&-1&0&0 \\ 0&0&1&0 \\ 0&0&0&-1 \end{pmatrix}$ on the right.
But this provides me with the matrix $\begin{pmatrix} g&-h&o&-p\\ e&-f&m&-n \\ c&-d&k&-l \\ a&-b&i&-j \end{pmatrix}$, which different from matrix $\mathbf B$.
Does anyone have any clue?
Thanks in advance.
Now multiply that result by
$$\pmatrix{0&0&0&1\\0&0&1&0\\0&1&0&0\\1&0&0&0}\;:$$
$$\begin{pmatrix} g&-h&o&-p\\ e&-f&m&-n \\ c&-d&k&-l \\ a&-b&i&-j \end{pmatrix}\pmatrix{0&0&0&1\\0&0&1&0\\0&1&0&0\\1&0&0&0}=\begin{pmatrix}-p&o&-h&g\\-n&m&-f&e\\-l&k&-d&c\\-j&i&-b&a\end{pmatrix}\;,$$
which is what you want. You can do this in one step by multiplying by
$$\begin{pmatrix} 1&0&0&0\\ 0&-1&0&0 \\ 0&0&1&0 \\ 0&0&0&-1 \end{pmatrix}\pmatrix{0&0&0&1\\0&0&1&0\\0&1&0&0\\1&0&0&0}=\pmatrix{0&0&0&1\\0&0&-1&0\\0&1&0&0\\-1&0&0&0}\;.$$