Lines Matching refs:other
56 Cwise<ExpressionType>::operator*(const MatrixBase<OtherDerived> &other) const
58 return EIGEN_CWISE_PRODUCT_RETURN_TYPE(ExpressionType,OtherDerived)(_expression(), other.derived());
65 Cwise<ExpressionType>::operator/(const MatrixBase<OtherDerived> &other) const
67 return EIGEN_CWISE_BINOP_RETURN_TYPE(internal::scalar_quotient_op)(_expression(), other.derived());
73 inline ExpressionType& Cwise<ExpressionType>::operator*=(const MatrixBase<OtherDerived> &other)
75 return m_matrix.const_cast_derived() = *this * other;
81 inline ExpressionType& Cwise<ExpressionType>::operator/=(const MatrixBase<OtherDerived> &other)
83 return m_matrix.const_cast_derived() = *this / other;
158 Cwise<ExpressionType>::operator<(const MatrixBase<OtherDerived> &other) const
160 return EIGEN_CWISE_BINOP_RETURN_TYPE(std::less)(_expression(), other.derived());
167 Cwise<ExpressionType>::operator<=(const MatrixBase<OtherDerived> &other) const
169 return EIGEN_CWISE_BINOP_RETURN_TYPE(std::less_equal)(_expression(), other.derived());
176 Cwise<ExpressionType>::operator>(const MatrixBase<OtherDerived> &other) const
178 return EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater)(_expression(), other.derived());
185 Cwise<ExpressionType>::operator>=(const MatrixBase<OtherDerived> &other) const
187 return EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater_equal)(_expression(), other.derived());
194 Cwise<ExpressionType>::operator==(const MatrixBase<OtherDerived> &other) const
196 return EIGEN_CWISE_BINOP_RETURN_TYPE(std::equal_to)(_expression(), other.derived());
203 Cwise<ExpressionType>::operator!=(const MatrixBase<OtherDerived> &other) const
205 return EIGEN_CWISE_BINOP_RETURN_TYPE(std::not_equal_to)(_expression(), other.derived());