Lines Matching refs:matB
74 MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols); in cholesky() local
91 matX = chollo.solve(matB); in cholesky()
92 VERIFY_IS_APPROX(symm * matX, matB); in cholesky()
107 matX = cholup.solve(matB); in cholesky()
108 VERIFY_IS_APPROX(symm * matX, matB); in cholesky()
131 m2 += symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
132 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
134 m2 -= symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
135 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
137 m2.noalias() += symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
138 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
140 m2.noalias() -= symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
141 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
161 matX = ldltlo.solve(matB); in cholesky()
162 VERIFY_IS_APPROX(symm * matX, matB); in cholesky()
178 matX = ldltup.solve(matB); in cholesky()
179 VERIFY_IS_APPROX(symm * matX, matB); in cholesky()
199 matX = matB; in cholesky()
201 VERIFY_IS_APPROX(matX, ldltlo.solve(matB).eval()); in cholesky()
204 matX = matB; in cholesky()
206 VERIFY_IS_APPROX(matX, ldltup.solve(matB).eval()); in cholesky()
304 MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols); in cholesky_cplx() local