HomeSort by relevance Sort by last modified time
    Searched refs:cwiseProduct (Results 26 - 33 of 33) sorted by null

12

  /external/eigen/test/
sparse_basic.cpp 257 VERIFY_IS_APPROX(m3.cwiseProduct(m1+m2), refM3.cwiseProduct(refM1+refM2));
276 VERIFY_IS_APPROX(m3.cwiseProduct(refM4), refM3.cwiseProduct(refM4));
nomalloc.cpp 54 VERIFY_IS_APPROX(m1.cwiseProduct(m1.block(0,0,rows,cols)), (m1.array()*m1.array()).matrix());
  /external/eigen/Eigen/src/Core/
SolveTriangular.h 126 .cwiseProduct(rhs.template segment<Index>(S)).sum();
ProductBase.h 138 return lhs().row(row).cwiseProduct(rhs().col(col).transpose()).sum();
GeneralProduct.h 211 Base::coeffRef(0,0) = (lhs.transpose().cwiseProduct(rhs)).sum();
552 dest.coeffRef(i) += alpha * (prod.lhs().row(i).cwiseProduct(prod.rhs().transpose())).sum();
586 // * for a coeff-wise product use: v1.cwiseProduct(v2)
623 // * for a coeff-wise product use: v1.cwiseProduct(v2)
  /external/eigen/Eigen/src/SparseCore/
SparseCwiseBinaryOp.h 318 SparseMatrixBase<Derived>::cwiseProduct(const MatrixBase<OtherDerived> &other) const
SparseMatrixBase.h 334 cwiseProduct(const MatrixBase<OtherDerived> &other) const;
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixVector.h 131 res.coeffRef(i) += alpha * (cjLhs.row(i).segment(s,r).cwiseProduct(cjRhs.segment(s,r).transpose())).sum();

Completed in 6989 milliseconds

12