Searched defs:vecX (Results 1 - 1 of 1) sorted by relevance

/external/eigen/test/
H A Dcholesky.cpp76 VectorType vecB = VectorType::Random(rows), vecX(rows);
96 vecX = chollo.solve(vecB);
97 VERIFY_IS_APPROX(symm * vecX, vecB);
104 vecX = cholup.solve(vecB);
105 VERIFY_IS_APPROX(symm * vecX, vecB);
133 vecX = ldltlo.solve(vecB);
134 VERIFY_IS_APPROX(symm * vecX, vecB);
140 vecX = ldltup.solve(vecB);
141 VERIFY_IS_APPROX(symm * vecX, vecB);
208 VectorType vecB = VectorType::Random(rows), vecX(row
261 VectorType vecX = matA.ldlt().solve(vecB); local
[all...]

Completed in 55 milliseconds