Hello,
I am only beginning with Stata and I am currently trying to invert a (256x256) matrix. This matrix is the result of the multiplication of a vector of residuals by the transposed of the same vector. Hence, this matrix is symmetric. However, when using the usual command:
mat omegainv = inv(omega)
stata tells me "matrix has missing values". I don't see where some values are missing.
I also tried the code
mat omegainv = invsym(omega)
but here, Stata generates a (256x256) matrix only filled with 0, which is not what I expected.
Has anyone already had this problem or knows how I can invert my matrix?
Thanks a lot for your help
Best, Quentin
I am only beginning with Stata and I am currently trying to invert a (256x256) matrix. This matrix is the result of the multiplication of a vector of residuals by the transposed of the same vector. Hence, this matrix is symmetric. However, when using the usual command:
mat omegainv = inv(omega)
stata tells me "matrix has missing values". I don't see where some values are missing.
I also tried the code
mat omegainv = invsym(omega)
but here, Stata generates a (256x256) matrix only filled with 0, which is not what I expected.
Has anyone already had this problem or knows how I can invert my matrix?
Thanks a lot for your help
Best, Quentin
Comment