Home | History | Annotate | Download | only in test

Lines Matching defs:square

31   SquareMatrixType square = SquareMatrixType::Random(rows,rows);
34 VERIFY_IS_APPROX(v, square * square.colPivHouseholderQr().solve(v));
35 square = square.inverse().eval();
36 a = square * a;
37 square = square*square;
38 v = square * v;
40 VERIFY(square.determinant() != Scalar(0));