Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00019 EIGEN_MAKE_CWISE_BINARY_OP(operator-,internal::scalar_difference_op)
00020
00021
00027 EIGEN_MAKE_CWISE_BINARY_OP(operator+,internal::scalar_sum_op)
00028
00040 template<typename CustomBinaryOp, typename OtherDerived>
00041 EIGEN_STRONG_INLINE const CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>
00042 binaryExpr(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other, const CustomBinaryOp& func = CustomBinaryOp()) const
00043 {
00044 return CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>(derived(), other.derived(), func);
00045 }
00046