Hi, as a follow up, how do we extract the asymptotic covariance matrix of the covariance matrix, for continuos data? This
matrix is used for instance to calculate the Satorra-Bentler correction, where we need to take the trace of some matrix U*Gamma,
where Gamma is the asymptotic covariance matrix.
My try is to estimate the model with WLS, and then obtain the inverse through
f1=cfa(my.model, data=X, estimator="WLS")
Gamma_inverse=inspect(f1, "WLS.V")
And then I guess I obtain Gamma by inverting Gamma_inverse??
Is there some better way to extract Gamma?