R/functions_utility.R
inv.Rd
Invert a symmetric, positive definite square matrix from its Choleski decomposition.
inv(M)
matrix
inv(cbind(1, 1:3, c(1,3,7)))#> [,1] [,2] [,3] #> [1,] 2.5 -2 0.5 #> [2,] -2.0 3 -1.0 #> [3,] 0.5 -1 0.5