5 A = np.random.rand(dim, dim)
7 A = (A + A.T) * 0.5 + np.diag(10.0 + np.random.rand(dim))
13 P = ldlt.transpositionsP()
16 np.transpose(P).dot(L.dot(np.diag(D).dot(np.transpose(L).dot(P)))), A
19 X = np.random.rand(dim, 20)
EIGEN_DONT_INLINE bool is_approx(const Eigen::MatrixBase< MatrixType1 > &mat1, const Eigen::MatrixBase< MatrixType2 > &mat2)