I am interested in the following optimization problem: $$ \min_{\lambda > 0} \| \lambda A - I \|_{2}, $$ where $A$ is an arbitrary matrix and $\| \cdot \|_2$ is the spectral norm.
As suggested by Spectral norm minimization via semidefinite programming, we could write the above problem as the following semidefinite program (SPD): \begin{align} &\min_{s,\lambda} s \\ &s.t.\begin{pmatrix} s I & \lambda A - I \\ \lambda A^{\top} - I & s I \end{pmatrix} \succcurlyeq O. \end{align} I wonder what next I could do in order to find an analytic solution to the above problem.
What's more, any other method that can solve the original matrix norm minimization problem is appreciated.