Let's say I have a vector $v$. Now I want to calculate $(v\cdot v^\top)^{-1}$. Is there a known formula to solve this more directly than simply calculating it directly? Maybe something similar to the Sherman–Morrison formula
$$(A+uv^\top)^{-1}=A^{-1}-{A^{-1}uv^\top A^{-1} \over 1+v^\top A^{-1}u}$$
which might be
$$(A+vv^\top)^{-1}=A^{-1}-{A^{-1}vv^\top A^{-1} \over 1+v^\top A^{-1}v}$$
for my case. However, I am still left with $A$ and the formula does not allow to be $A$ to be zero if I am not mistaken.
Or maybe there is a very efficient method to calculate $(v\cdot v^\top)^{-1}$ for such a special case?