Lines Matching full:operator
15 * \note If you want to substract a given scalar from all coefficients, see Cwise::operator-().
17 * \sa class CwiseBinaryOp, operator-=()
19 EIGEN_MAKE_CWISE_BINARY_OP(operator-,internal::scalar_difference_op)
23 * \note If you want to add a given scalar to all coefficients, see Cwise::operator+().
25 * \sa class CwiseBinaryOp, operator+=()
27 EIGEN_MAKE_CWISE_BINARY_OP(operator+,internal::scalar_sum_op)
29 /** \returns an expression of a custom coefficient-wise operator \a func of *this and \a other
32 * of the custom operator (see class CwiseBinaryOp for an example)
38 * \sa class CwiseBinaryOp, operator+(), operator-(), cwiseProduct()