Lines Matching refs:chollo
36 CholType<MatrixType,Lower> chollo(symmLo); in test_chol_update() local
50 chollo.rankUpdate(vec, sigma); in test_chol_update()
51 VERIFY_IS_APPROX(symmCpy, chollo.reconstructedMatrix()); in test_chol_update()
87 LLT<SquareMatrixType,Lower> chollo(symmLo); in cholesky() local
88 VERIFY_IS_APPROX(symm, chollo.reconstructedMatrix()); in cholesky()
89 vecX = chollo.solve(vecB); in cholesky()
91 matX = chollo.solve(matB); in cholesky()
94 const MatrixType symmLo_inverse = chollo.solve(MatrixType::Identity(rows,cols)); in cholesky()
97 RealScalar rcond_est = chollo.rcond(); in cholesky()
120 chollo.compute(neg); in cholesky()
121 VERIFY(chollo.info()==NumericalIssue); in cholesky()
123 …VERIFY_IS_APPROX(MatrixType(chollo.matrixL().transpose().conjugate()), MatrixType(chollo.matrixU()… in cholesky()
124 …VERIFY_IS_APPROX(MatrixType(chollo.matrixU().transpose().conjugate()), MatrixType(chollo.matrixL()… in cholesky()
316 LLT<RealMatrixType,Lower> chollo(symmLo); in cholesky_cplx() local
317 VERIFY_IS_APPROX(symm, chollo.reconstructedMatrix()); in cholesky_cplx()
318 vecX = chollo.solve(vecB); in cholesky_cplx()