2009-11-21 01:20:55 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
|
// for linear algebra.
|
|
|
|
|
//
|
Relax mixing-type constraints for binary coefficient-wise operators:
- Replace internal::scalar_product_traits<A,B> by Eigen::ScalarBinaryOpTraits<A,B,OP>
- Remove the "functor_is_product_like" helper (was pretty ugly)
- Currently, OP is not used, but it is available to the user for fine grained tuning
- Currently, only the following operators have been generalized: *,/,+,-,=,*=,/=,+=,-=
- TODO: generalize all other binray operators (comparisons,pow,etc.)
- TODO: handle "scalar op array" operators (currently only * is handled)
- TODO: move the handling of the "void" scalar type to ScalarBinaryOpTraits
2016-06-06 21:11:41 +08:00
|
|
|
// Copyright (C) 2008-2016 Gael Guennebaud <gael.guennebaud@inria.fr>
|
2009-11-21 01:20:55 +08:00
|
|
|
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
|
|
|
|
|
//
|
2012-07-14 02:42:47 +08:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2009-11-21 01:20:55 +08:00
|
|
|
|
|
|
|
|
// This file is a base class plugin containing common coefficient wise functions.
|
|
|
|
|
|
|
|
|
|
/** \returns an expression of the difference of \c *this and \a other
|
|
|
|
|
*
|
|
|
|
|
* \note If you want to substract a given scalar from all coefficients, see Cwise::operator-().
|
|
|
|
|
*
|
2010-04-19 10:14:55 +08:00
|
|
|
* \sa class CwiseBinaryOp, operator-=()
|
2009-11-21 01:20:55 +08:00
|
|
|
*/
|
Relax mixing-type constraints for binary coefficient-wise operators:
- Replace internal::scalar_product_traits<A,B> by Eigen::ScalarBinaryOpTraits<A,B,OP>
- Remove the "functor_is_product_like" helper (was pretty ugly)
- Currently, OP is not used, but it is available to the user for fine grained tuning
- Currently, only the following operators have been generalized: *,/,+,-,=,*=,/=,+=,-=
- TODO: generalize all other binray operators (comparisons,pow,etc.)
- TODO: handle "scalar op array" operators (currently only * is handled)
- TODO: move the handling of the "void" scalar type to ScalarBinaryOpTraits
2016-06-06 21:11:41 +08:00
|
|
|
template<typename OtherDerived>
|
|
|
|
|
EIGEN_DEVICE_FUNC
|
|
|
|
|
EIGEN_STRONG_INLINE const EIGEN_CWISE_BINARY_RETURN_TYPE(Derived,OtherDerived,difference)
|
|
|
|
|
operator-(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
|
|
|
|
|
{
|
|
|
|
|
return EIGEN_CWISE_BINARY_RETURN_TYPE(Derived,OtherDerived,difference)(derived(), other.derived());
|
|
|
|
|
}
|
2009-11-21 01:20:55 +08:00
|
|
|
|
|
|
|
|
/** \returns an expression of the sum of \c *this and \a other
|
|
|
|
|
*
|
|
|
|
|
* \note If you want to add a given scalar to all coefficients, see Cwise::operator+().
|
|
|
|
|
*
|
2010-04-19 10:14:55 +08:00
|
|
|
* \sa class CwiseBinaryOp, operator+=()
|
2009-11-21 01:20:55 +08:00
|
|
|
*/
|
Relax mixing-type constraints for binary coefficient-wise operators:
- Replace internal::scalar_product_traits<A,B> by Eigen::ScalarBinaryOpTraits<A,B,OP>
- Remove the "functor_is_product_like" helper (was pretty ugly)
- Currently, OP is not used, but it is available to the user for fine grained tuning
- Currently, only the following operators have been generalized: *,/,+,-,=,*=,/=,+=,-=
- TODO: generalize all other binray operators (comparisons,pow,etc.)
- TODO: handle "scalar op array" operators (currently only * is handled)
- TODO: move the handling of the "void" scalar type to ScalarBinaryOpTraits
2016-06-06 21:11:41 +08:00
|
|
|
template<typename OtherDerived>
|
|
|
|
|
EIGEN_DEVICE_FUNC
|
|
|
|
|
EIGEN_STRONG_INLINE const EIGEN_CWISE_BINARY_RETURN_TYPE(Derived,OtherDerived,sum)
|
|
|
|
|
operator+(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
|
|
|
|
|
{
|
|
|
|
|
return EIGEN_CWISE_BINARY_RETURN_TYPE(Derived,OtherDerived,sum)(derived(), other.derived());
|
|
|
|
|
}
|
2009-11-21 01:20:55 +08:00
|
|
|
|
|
|
|
|
/** \returns an expression of a custom coefficient-wise operator \a func of *this and \a other
|
|
|
|
|
*
|
|
|
|
|
* The template parameter \a CustomBinaryOp is the type of the functor
|
|
|
|
|
* of the custom operator (see class CwiseBinaryOp for an example)
|
|
|
|
|
*
|
|
|
|
|
* Here is an example illustrating the use of custom functors:
|
|
|
|
|
* \include class_CwiseBinaryOp.cpp
|
|
|
|
|
* Output: \verbinclude class_CwiseBinaryOp.out
|
|
|
|
|
*
|
2010-08-23 18:44:51 +08:00
|
|
|
* \sa class CwiseBinaryOp, operator+(), operator-(), cwiseProduct()
|
2009-11-21 01:20:55 +08:00
|
|
|
*/
|
|
|
|
|
template<typename CustomBinaryOp, typename OtherDerived>
|
2013-02-08 02:06:14 +08:00
|
|
|
EIGEN_DEVICE_FUNC
|
2011-01-24 21:27:06 +08:00
|
|
|
EIGEN_STRONG_INLINE const CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>
|
2009-11-21 01:20:55 +08:00
|
|
|
binaryExpr(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other, const CustomBinaryOp& func = CustomBinaryOp()) const
|
|
|
|
|
{
|
2011-01-24 21:27:06 +08:00
|
|
|
return CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>(derived(), other.derived(), func);
|
2009-11-21 01:20:55 +08:00
|
|
|
}
|
|
|
|
|
|