Home | History | Annotate | Download | only in Eigen2Support

Lines Matching refs:other

66     operator*(const MatrixBase<OtherDerived> &other) const;
70 operator/(const MatrixBase<OtherDerived> &other) const;
75 (min)(const MatrixBase<OtherDerived> &other) const
76 { return EIGEN_CWISE_BINOP_RETURN_TYPE(internal::scalar_min_op)(_expression(), other.derived()); }
81 (max)(const MatrixBase<OtherDerived> &other) const
82 { return EIGEN_CWISE_BINOP_RETURN_TYPE(internal::scalar_max_op)(_expression(), other.derived()); }
112 inline ExpressionType& operator*=(const MatrixBase<OtherDerived> &other);
115 inline ExpressionType& operator/=(const MatrixBase<OtherDerived> &other);
118 operator<(const MatrixBase<OtherDerived>& other) const;
121 operator<=(const MatrixBase<OtherDerived>& other) const;
124 operator>(const MatrixBase<OtherDerived>& other) const;
127 operator>=(const MatrixBase<OtherDerived>& other) const;
130 operator==(const MatrixBase<OtherDerived>& other) const;
133 operator!=(const MatrixBase<OtherDerived>& other) const;