Lines Matching refs:OtherDerived
19 … CwiseBinaryOp<OP<typename internal::traits<ExpressionType>::Scalar>, ExpressionType, OtherDerived>
64 template<typename OtherDerived>
65 const EIGEN_CWISE_PRODUCT_RETURN_TYPE(ExpressionType,OtherDerived)
66 operator*(const MatrixBase<OtherDerived> &other) const;
68 template<typename OtherDerived>
70 operator/(const MatrixBase<OtherDerived> &other) const;
73 template<typename OtherDerived>
75 (min)(const MatrixBase<OtherDerived> &other) const in EIGEN_CWISE_BINOP_RETURN_TYPE()
79 template<typename OtherDerived>
81 (max)(const MatrixBase<OtherDerived> &other) const in EIGEN_CWISE_BINOP_RETURN_TYPE()
111 template<typename OtherDerived>
112 inline ExpressionType& operator*=(const MatrixBase<OtherDerived> &other);
114 template<typename OtherDerived>
115 inline ExpressionType& operator/=(const MatrixBase<OtherDerived> &other);
117 template<typename OtherDerived> const EIGEN_CWISE_BINOP_RETURN_TYPE(std::less)
118 operator<(const MatrixBase<OtherDerived>& other) const;
120 template<typename OtherDerived> const EIGEN_CWISE_BINOP_RETURN_TYPE(std::less_equal)
121 operator<=(const MatrixBase<OtherDerived>& other) const;
123 template<typename OtherDerived> const EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater)
124 operator>(const MatrixBase<OtherDerived>& other) const;
126 template<typename OtherDerived> const EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater_equal)
127 operator>=(const MatrixBase<OtherDerived>& other) const;
129 template<typename OtherDerived> const EIGEN_CWISE_BINOP_RETURN_TYPE(std::equal_to)
130 operator==(const MatrixBase<OtherDerived>& other) const;
132 template<typename OtherDerived> const EIGEN_CWISE_BINOP_RETURN_TYPE(std::not_equal_to)
133 operator!=(const MatrixBase<OtherDerived>& other) const;