Given a symmetric positive definite matrix $S \in \mathbb R^{d\times d}$ and $\lambda > 0$, I would like to find
$$X^\star := \underset{{X\in\mathbb R^{d\times d}}}{\operatorname{argmin}} \operatorname{tr}\left(X^{-T}SX^{-1}\right) + \lambda \|X\|_1.$$
where
$$\|X\|_1 := \sum_{i=1}^d\sum_{j=1}^d\left\vert X_{ij}\right\vert$$
Has anyone seen this kind of objective function? In particular, it has proven to be quite tricky as it seems to be locally convex.
Given a symmetric positive definite matrix $S \in \mathbb R^{d\times d}$ and $\lambda > 0$.
If you like to find
$$X^\star := \underset{{X\in\mathbb R^{d\times d}}}{\operatorname{argmin}} \operatorname{tr}\left(X^{-T}SX^{-1}\right) + \lambda \|X\|_1.$$ where $$\|X\|_1 := \sum_{i=1}^d\sum_{j=1}^d\left\vert X_{ij}\right\vert.$$
You can rewrite this problem as $$\begin{cases}\underset{(Y,t)}{\operatorname{argmin}} &\operatorname{tr}\left(YY^{T}S\right) + \lambda \sum_{i=1}^d\sum_{j=1}^d t_{ij}\\ \text{subject to}&XY=I\\&t_{ij}-X_{ij}\geq 0\\&t_{ij}+X_{ij}\geq 0\end{cases}.$$
You can find related discussions and numerical methods suggestions in Counterexample for a convex problem and operator norm minimization problem, for instance.
Perhaps this discussion helps you with Lagrange Multipliers and Constrained Optimization
You can use numerical R language function, and find more searching for "\(\min_Y tr(Y^TYS)\)" on SearchOnMath, for instance.