Inverse of a symmetric positive definite matrix
Inverse of a symmetric positive definite matrix.
spdinv(A)
A |
A square positive definite matrix. |
After calculating the Cholesky decomposition of the matrix we use this upper triangular matrix to invert the original matrix.
The inverse of the input matrix.
Michail Tsagris
R implementation and documentation: Michail Tsagris <mtsagris@yahoo.gr> and Manos Papadakis <papadakm95@gmail.com>.
http://econ.nsysu.edu.tw/ezfiles/124/1124/img/Chapter17_MaximumLikelihoodEstimation.pdf
s <- cova( as.matrix(iris[, 1:4]) ) res<-spdinv(s) res<-solve(s)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.