We have $$ \bar{L}\bar{C}=T^{-1}LCT$$ where $T$ is a coordinate change matrix, $L$ is a column vector and $C$ a row vector of compatible dimension.
What if I want to find out $L$? The result should be $L=T^{-1} \bar{L}$ but I can't understand why.
We have $$ \bar{L}\bar{C}=T^{-1}LCT$$ where $T$ is a coordinate change matrix, $L$ is a column vector and $C$ a row vector of compatible dimension.
What if I want to find out $L$? The result should be $L=T^{-1} \bar{L}$ but I can't understand why.
I'm assuming you are given the product $\bar{L} \bar{C}$ and the matrix $T$ from which you want to find $L$, is that right?
In this case, if you are given $\bar{L} \bar{C} = T^{-1} L C T$ then you can compute $L C = T \bar{L} \bar{C} T^{-1}$. From this, there is no unique way to get $L$ since $L C = (\alpha L) \cdot (\frac{1}{\alpha}C)$ for any $\alpha \neq 0$. However, besides for this scaling ambiguity you can find $L$: since $T \bar{L} \bar{C} T^{-1}$ is rank one, take any nonzero column of it and it qualifies as an estimate of $L$ (they are all scaled copies of each other and scaling is not determined uniquely). Moreover, if $T \bar{L} \bar{C} T^{-1}$ is not exactly rank one (e.g., due some observation errors), you can obtain a rank-one approximation via the truncated SVD. In this case, the dominant left singular vector is a viable estimate for $L$.
Of course, if you also know $C$ it's simpler, you then solve for $L$ by multiplying $L C = T \bar{L} \bar{C} T^{-1}$ with $C^T$ from the right to get $$L C C^T = T \bar{L} \bar{C} T^{-1} C^T \quad \Rightarrow \quad {L} = T \bar{L} \cdot \frac{\bar{C} T^{-1} C^T}{C C^T}.$$
Note that the two terms in the fraction are scalar, since $C$ is a row vector.