Commit 69e3f4fe authored by Davis King's avatar Davis King

Changed code to make sure it always calls the symmetric eigenvalue solver.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403836
parent 026abedb
......@@ -363,7 +363,7 @@ namespace dlib
L += y(i)*proj_x(i);
}
eigenvalue_decomposition<general_matrix_type> eig(C);
eigenvalue_decomposition<general_matrix_type> eig(make_symmetric(C));
const general_matrix_type V = eig.get_pseudo_v();
const column_matrix_type D = eig.get_real_eigenvalues();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment