I have two matrices, $X\in R^{m \times n}, Y \in R^{m \times p}$ and I also have another two matrices, $A \in R^{r \times n}, B \in R^{r \times p}$. Now I want to a matrix $H \in R^{m \times r}$ to satisfy the following objective function. Here H is a common matrix.
The objective function is list as follows:
$f=arg\min_{H}(1-\lambda)||X-HA||_F^2+\lambda||Y-HB||_F^2$, s.t. $H\succeq0$
where X, Y, A, B, and ($0 \leq \lambda \le1$) are known, what is the best way to get H? Can you tell me this kinds of objective function belongs to which problem? matrix factorization? but it is two matrices X and Y. For the constrain of H, how to deal with this? I understand that $\partial f/\partial H = 0$ can deal with this, but I still do not know how to handle H constrain.
Is this H matrix called correlation matrix between X and Y? If X and Y are similarity matrices, can I use the objective function to get H as the correlation matrix to indicate the correlation between X and Y?
Can you help me to get the solution of H?
Any help is appreciated!