When learning linear algebar I often blindly follow algorithms to perform operations with matrices without fully understanding concepts behind them. It helped a lot when I started dealing with rotations and got some associations in those terms.
Could you give some intuitive examples illustrating operations with matrices? A good example from the other field is graphing a function point by point to understand its nature.
For matrix multiplication, an example is a plumbing system where water flows in and out of multiple pipes. Let the $p\times q$ matrix $\mathbf{A}$ represent one system of $p$ pipes in and $q$ pipes out where each cell $(i,j)$ represents the fraction of water coming in on pipe $i$ that will leave on pipe $j$. Given a $q\times r$ matrix $\mathbf{B}$ representing another system of $q$ pipes in and $r$ pipes out, the overall system is represented by the $p\times r$ matrix $\mathbf{AB}$.
This is because cell $(i,j)$ in $\mathbf{AB}$ is the dot product of the $i$th row of $\mathbf{A}$ and $j$th column of $\mathbf{B}$ (i.e. the sum of the products of the corresponding elements of the row and column vectors). The $i$th row of $\mathbf{A}$ represents outflows for pipe $i$ of the first system into each of the $q$ pipes of the second system. And the the $j$th column of $\mathbf{B}$ represents the outflows from the $j$th pipe of the second system given inflows into the $q$ pipes of the second system.