You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i.e., the first matrix is not transposed while the last is. To quickly check,
using LinearAlgebra;
A =Symmetric(rand(3,3));
eigval, eigvect =eigen(A);
norm(eigvect *Diagonal(eigval) * eigvect'- A) <1e-12# truenorm(eigvect'*Diagonal(eigval) * eigvect - A) <1e-12# false
The text was updated successfully, but these errors were encountered:
In
utils.jl
, there is a mistake in the formula below when it reconstructs the covariance matrix after eigen decomposition:Vcov.jl/src/utils.jl
Line 8 in 912844e
The correct order should be:
i.e., the first matrix is not transposed while the last is. To quickly check,
The text was updated successfully, but these errors were encountered: