Lines Matching refs:cholup
37 CholType<MatrixType,Upper> cholup(symmUp); in test_chol_update() local
53 cholup.rankUpdate(vec, sigma); in test_chol_update()
54 VERIFY_IS_APPROX(symmCpy, cholup.reconstructedMatrix()); in test_chol_update()
103 LLT<SquareMatrixType,Upper> cholup(symmUp); in cholesky() local
104 VERIFY_IS_APPROX(symm, cholup.reconstructedMatrix()); in cholesky()
105 vecX = cholup.solve(vecB); in cholesky()
107 matX = cholup.solve(matB); in cholesky()
112 const MatrixType symmUp_inverse = cholup.solve(MatrixType::Identity(rows,cols)); in cholesky()
115 rcond_est = cholup.rcond(); in cholesky()
125 …VERIFY_IS_APPROX(MatrixType(cholup.matrixL().transpose().conjugate()), MatrixType(cholup.matrixU()… in cholesky()
126 …VERIFY_IS_APPROX(MatrixType(cholup.matrixU().transpose().conjugate()), MatrixType(cholup.matrixL()… in cholesky()