I've read this post: Row vector vs. Column vector and while it helped me understand that the differences seems to be dependent on what you're trying to do, I still find myself struggling to tell the difference between a matrix of column vectors and a matrix of row vectors.
If I have a matrix: $$ \begin{bmatrix} 1 & 2 \\ 3 & 4 \\ \end{bmatrix} $$
Is the first matrix two column vectors, \begin{bmatrix} 1 \\ 3 \end{bmatrix} and \begin{bmatrix} 2 \\ 4 \end{bmatrix} ?
Or is it two row vectors [ 1 2 ] and [ 3 4 ]?
I've noticed that in the Coursera course I'm taking when it asks me to do matrix multiplication, the left matrix is row vectors, and the right matrix is column vectors. Is that always the convention or is there some way of knowing?