Home | History | Annotate | Download | only in plugins

Lines Matching refs:other

13 /** \returns an expression of the Schur product (coefficient wise product) of *this and \a other
22 cwiseProduct(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
24 return EIGEN_CWISE_PRODUCT_RETURN_TYPE(Derived,OtherDerived)(derived(), other.derived());
27 /** \returns an expression of the coefficient-wise == operator of *this and \a other
41 cwiseEqual(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
43 return CwiseBinaryOp<std::equal_to<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
46 /** \returns an expression of the coefficient-wise != operator of *this and \a other
60 cwiseNotEqual(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
62 return CwiseBinaryOp<std::not_equal_to<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
65 /** \returns an expression of the coefficient-wise min of *this and \a other
74 cwiseMin(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
76 return CwiseBinaryOp<internal::scalar_min_op<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
79 /** \returns an expression of the coefficient-wise min of *this and scalar \a other
84 cwiseMin(const Scalar &other) const
86 return cwiseMin(Derived::Constant(rows(), cols(), other));
89 /** \returns an expression of the coefficient-wise max of *this and \a other
98 cwiseMax(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
100 return CwiseBinaryOp<internal::scalar_max_op<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
103 /** \returns an expression of the coefficient-wise max of *this and scalar \a other
108 cwiseMax(const Scalar &other) const
110 return cwiseMax(Derived::Constant(rows(), cols(), other));
114 /** \returns an expression of the coefficient-wise quotient of *this and \a other
123 cwiseQuotient(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
125 return CwiseBinaryOp<internal::scalar_quotient_op<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());