I understand that it is important in the field of matrix-vector multiplication when vectors can be interpreted as a matrix of one row/column vector.
But I do not really understand when I should use column vectors and when to use row vectors generally - when does it make a difference? Is it more a question on asthetics/style?
Let $v \in \mathbb R^d$, is it a column vector or a row vector? (I think, it depends on interpretation, doesn’t it?) When does one care about it?
Generally speaking, if $x \in \mathbb{R}^d$, then $x$ is conventionally chosen to be a column vector, and perhaps to avoid using extra space, it is written in text as $x = (x_1 , \cdots, x_d)^T$. Since $x$ is a column vector, the order of matrix multiplication with a $d \times d$ matrix $A$ will be $Ax$.
You can consider $x$ to be row vector if you like, then you just need to be careful with matrix multiplication.