I have computed the Cholesky of a positive semidefinite matrix $\Theta$. However, I wish to know the diagonal elements of the inverse of $\Theta^{-1}_{ii}$. Is it possible to do this using the Cholesky that I have computed? Or will finding the eigenvalues alone (without the orthonormal matrices of a SVD) help this cause? Are there any other suggestions or alternative decompositions that will aid finding the inverse matrix diagonal?
I've seen that random projections does wonders for inverting matrices. Could something like this be applied here?
If you have the Cholesky decomposition, you can easily compute the whole matrix inverse. Since
$$\Theta = R^* R$$
where $R$ is upper-triangular, then you can find $\Theta^{-1}$ by solving
$$R^* R X = I$$
where $I$ is the identity. The latter system can be solved by forward and backward substitution.
If you only want the diagonal entries of $X$, you could save perhaps half the computation by stopping the backward substitution process (for each column) when you get to the diagonal entry.