Suppose a study with dependent variable $y$, and predictors $x_1$, $x_2$, ..., $x_k$.
Assume that I have access to the covariance matrix $$\hat\Sigma = \begin{bmatrix}Var(y) & cov(x_1,y) & ... & cov(x_k,y) \\ cov(y, x_1) & var(x_1) & ... & cov(x_1, x_k) \\ ... \\ cov(y,x_k) & cov(x_1,x_k) &... & var(x_k) \end{bmatrix}$$ and the mean vectors $\hat\mu = [\bar{y}, \bar{x_1}, ... \bar{x_k}]'$. Is it possible to get the error matrix of the regression coefficients?
It is easy to get the estimates of the regression coefficients (see responses given here or here for example). With some manipulation, we also get the sum of square residuals $\epsilon^T.\epsilon$ as well as the error variance $\hat\sigma^2$ fairly easily with
$$\hat\sigma^2 = Var(y) -\Big( \sum_{i=1}^k \beta_i^2\, var(x_i) +2 \sum_{1 \le i<j \le k} \beta_i \,\beta_j \,cov(x_i,x_j) \Big)$$ and $$\epsilon^T.\epsilon = \hat\sigma^2 \times (n-k) $$
To get $\widehat{var(\beta_i)}$, I have seen on many locations that the design matrix $\mathbf{X}$ can be used as
$$ \hat\sigma^2 (\mathbf{X}^T. \mathbf{X})^{-1}$$
(and it works well). But what if I do not have access to the data, only to the summary statistics that are the vector of means and the covariance matrix (and sample size of course)? Can it be done?