powered by
This function computes the square root of a matrix.
sqrtmat(A)
matrix
\(B\) such that \(BB'=A\)
symmetric positive-definite matrix
https://en.wikipedia.org/wiki/Square_root_of_a_matrix
A <- matrix(c(5,1,1,3),2,2) B <- sqrtmat(A) B %*% t(B) A
Run the code above in your browser using DataLab