HomeSort by relevance Sort by last modified time
    Searched refs:rhs3 (Results 1 - 3 of 3) sorted by null

  /external/eigen/test/
product_symm.cpp 18 typedef Matrix<Scalar, Size, OtherSize,order> Rhs3;
31 Rhs3 rhs3 = Rhs3::Random(cols, othersize), rhs32(cols, othersize), rhs33(cols, othersize); local
62 VERIFY_IS_APPROX(rhs12 -= (s1*m2).template selfadjointView<Lower>() * (s2*rhs3),
63 rhs13 -= (s1*m1) * (s2 * rhs3));
66 VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs3).conjugate(),
67 rhs13 = (s1*m1.adjoint()) * (s2*rhs3).conjugate());
71 VERIFY_IS_APPROX(rhs12.noalias() += s1 * ((m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs3).conjugate()),
72 rhs13 += (s1*m1.adjoint()) * (s2*rhs3).conjugate())
    [all...]
product_syrk.cpp 19 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, Dynamic,RowMajor> Rhs3;
31 Rhs3 rhs3 = Rhs3::Random(internal::random<int>(1,320), rows); local
69 VERIFY_IS_APPROX(m2.template selfadjointView<Lower>().rankUpdate(rhs3.adjoint(),s1)._expression(),
70 (s1 * rhs3.adjoint() * rhs3).eval().template triangularView<Lower>().toDenseMatrix());
73 VERIFY_IS_APPROX(m2.template selfadjointView<Upper>().rankUpdate(rhs3.adjoint(),s1)._expression(),
74 (s1 * rhs3.adjoint() * rhs3).eval().template triangularView<Upper>().toDenseMatrix())
    [all...]
jacobisvd.cpp 154 RhsType3 rhs3 = C * rhs2;
156 SolutionType x3 = svd3.solve(rhs3);
163 // VERIFY_IS_APPROX(m3*x3, rhs3);
164 VERIFY_IS_APPROX(m3*x21, rhs3);

Completed in 47 milliseconds