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

  /external/eigen/test/
product_syrk.cpp 17 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, Dynamic> Rhs1;
29 Rhs1 rhs1 = Rhs1::Random(internal::random<int>(1,320), cols); Rhs1 rhs11 = Rhs1::Random(rhs1.rows(), cols); local
54 VERIFY_IS_APPROX(m2.template selfadjointView<Lower>().rankUpdate(rhs1.adjoint(),s1)._expression(),
55 (s1 * rhs1.adjoint() * rhs1).eval().template triangularView<Lower>().toDenseMatrix())
    [all...]
product_symm.cpp 15 typedef Matrix<Scalar, Size, OtherSize> Rhs1;
29 Rhs1 rhs1 = Rhs1::Random(cols, othersize), rhs12(cols, othersize), rhs13(cols, othersize); local
39 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs1),
40 rhs13 = (s1*m1) * (s2*rhs1));
42 VERIFY_IS_APPROX(rhs12 = (s1*m2).transpose().template selfadjointView<Upper>() * (s2*rhs1),
43 rhs13 = (s1*m1.transpose()) * (s2*rhs1));
45 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().transpose() * (s2*rhs1),
46 rhs13 = (s1*m1.transpose()) * (s2*rhs1));
    [all...]
  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 157 typedef typename internal::nested_eval<Rhs,Dynamic>::type Rhs1;
158 typedef typename internal::remove_all<Rhs1>::type Rhs1Cleaned;
159 const Rhs1 rhs1(m_B);
175 for (RhsInnerIterator itB(rhs1,kB); itB; ++itB)
188 for (RhsInnerIterator itB(rhs1,kB); itB; ++itB)

Completed in 79 milliseconds