I'm having trouble representing a certain linear transformation as a matrix. In general, for a linear transformation that takes in a column vector, I know how to find this representation. However, my problem arises in the fact that this transformation instead takes a 2x2 matrix as its arguments.
$T(\begin{bmatrix} a && b \\ c && d \end{bmatrix}) = \begin{bmatrix} d && a \\ b && c \end{bmatrix} $
I attempted to apply $T$ to the standard basis of the 2x2 matrices. However, I ended up with a 4x4 matrix (understandable, as there are 4 matrices in that basis). This matrix I came up with was
$ \begin{bmatrix} 0 && 0 && 0 && 1 \\ 1 && 0 && 0 && 0 \\ 0 && 1 && 0 && 0 \\ 0 && 0 && 1 && 0 \\ \end{bmatrix} $
I know with that (incorrect) 4x4 matrix I'm on the verge of the answer with that. Any help is greatly appreciated!