$C \in \mathbb{R}^{m \times n}$, $X \in \mathbb{R}^{m \times n}$, $W \in \mathbb{R}^{m \times k}$, $H \in \mathbb{R}^{n \times k}$
$\circ$ is Hadamard product (element-wise product).
$$[C \circ (WH^T)]H - (C \circ X)H +{\lambda}W = 0 \quad (1)$$
Hi everyone,
In equation (1), how to get the $W$ expression, that is $W$ was expressed by other matrices. Or is there some ways to change the hadamard product to ordinary matrix product (if no such hadamard product, it is easy to solve as usual)? What is the trick to solve such kinds of equations?
$$W = ?$$
Thanks.
Kevin
It's of the form $L(W) + \lambda W = B$ where $L$ is a linear operator, so if $L + \lambda I$ is invertible the solution is $W = (L+\lambda I)^{-1} B$. I don't know if there is a very nice expression for $(L + \lambda I)^{-1}$.