If function $f : \Bbb C^{n \times n} \to \Bbb C^{n \times n}$ is defined by$$ f(X) := X A X^{H} - X B - E X^{H} + F $$ find the derivative $\frac{\partial f}{\partial X}$. Here, $X^{H}$ denotes the complex conjugate transpose of $X$.
I want to do this as I want to find out the minimizer of trace$(f(X))$ , so I want to differentiate and find out the optimal $X$, i.e.,
$$\underset{X}{\min} \quad\mbox{Trace} \left( f(X) \right)$$
How do I find the derivative of $f$ with respect to $X$? I consulted the matrix cookbook but did not find the relevant results. I only found results pertaining to vectors but here the derivative is with respect to a matrix.
Since there's some debate about what question you intended, I'm going to address the real situation, as it is less complicated.
You want to compute $\dfrac{\partial F}{\partial X}Y$, i.e., the directional derivative in direction $Y$ (which is another matrix). This is the best way to handle the derivative as a linear map when the inputs are matrices. I'm going to write $^\top$ for the transpose.
We have \begin{align*} \frac{\partial f}{\partial X}Y &= \lim_{t\to 0} \frac{F(X+tY)-F(X)}t \\ &= \lim_{t\to 0}\frac1t \big((X+tY)A(X+tY)^\top - (X+tY)B - E(X+tY)^\top+F-XAX^\top+XB +EX^\top - F\big) \\ &= \lim_{t\to 0} \frac{tYAX^\top + tXAY^\top + t^2YAY^\top - tYB-tEY^\top}t \\ &= YAX^\top + XAY^\top - YB - EY^\top. \end{align*}
Note that there is no more concise formula, as the answer involves both $Y$ and $Y^\top$.