2008-05-31 18:11:48 +00:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
|
// for linear algebra. Eigen itself is part of the KDE project.
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2008 Gael Guennebaud <g.gael@free.fr>
|
|
|
|
|
//
|
|
|
|
|
// Eigen is free software; you can redistribute it and/or
|
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
|
// version 3 of the License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// Alternatively, you can redistribute it and/or
|
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
|
// published by the Free Software Foundation; either version 2 of
|
|
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
|
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License and a copy of the GNU General Public License along with
|
|
|
|
|
// Eigen. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
#ifndef EIGEN_ARRAY_CWISE_OPERATORS_H
|
|
|
|
|
#define EIGEN_ARRAY_CWISE_OPERATORS_H
|
|
|
|
|
|
|
|
|
|
// -- unary operators --
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise square root of *this. */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_sqrt_op)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::sqrt() const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-08 00:49:10 +00:00
|
|
|
return _expression();
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise exponential of *this. */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_exp_op)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::exp() const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-08 00:49:10 +00:00
|
|
|
return _expression();
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise logarithm of *this. */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_log_op)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::log() const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-08 00:49:10 +00:00
|
|
|
return _expression();
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise cosine of *this. */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_cos_op)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::cos() const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-08 00:49:10 +00:00
|
|
|
return _expression();
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-07-08 00:49:10 +00:00
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise sine of *this. */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_sin_op)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::sin() const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-08 00:49:10 +00:00
|
|
|
return _expression();
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-07-08 00:49:10 +00:00
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise power of *this to the given exponent. */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_pow_op)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::pow(const Scalar& exponent) const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-29 16:33:07 +00:00
|
|
|
return EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_pow_op)(_expression(), ei_scalar_pow_op<Scalar>(exponent));
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-07-08 00:49:10 +00:00
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
2008-07-08 00:49:10 +00:00
|
|
|
* \returns an expression of the coefficient-wise inverse of *this. */
|
|
|
|
|
template<typename ExpressionType>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_inverse_op)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::inverse() const
|
|
|
|
|
{
|
|
|
|
|
return _expression();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise square of *this. */
|
|
|
|
|
template<typename ExpressionType>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_square_op)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::square() const
|
2008-05-31 21:35:11 +00:00
|
|
|
{
|
2008-07-08 00:49:10 +00:00
|
|
|
return _expression();
|
2008-05-31 21:35:11 +00:00
|
|
|
}
|
|
|
|
|
|
2008-07-08 00:49:10 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise cube of *this. */
|
|
|
|
|
template<typename ExpressionType>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_UNOP_RETURN_TYPE(ei_scalar_cube_op)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::cube() const
|
|
|
|
|
{
|
|
|
|
|
return _expression();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-05-31 18:11:48 +00:00
|
|
|
// -- binary operators --
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise \< operator of *this and \a other
|
2008-05-31 18:11:48 +00:00
|
|
|
*
|
2008-07-22 10:54:42 +00:00
|
|
|
* See MatrixBase::all() for an example.
|
|
|
|
|
*
|
2008-05-31 18:11:48 +00:00
|
|
|
* \sa class CwiseBinaryOp
|
|
|
|
|
*/
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-05-31 18:11:48 +00:00
|
|
|
template<typename OtherDerived>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_BINOP_RETURN_TYPE(std::less)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::operator<(const MatrixBase<OtherDerived> &other) const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-29 16:33:07 +00:00
|
|
|
return EIGEN_CWISE_BINOP_RETURN_TYPE(std::less)(_expression(), other.derived());
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise \<= operator of *this and \a other
|
2008-05-31 18:11:48 +00:00
|
|
|
*
|
|
|
|
|
* \sa class CwiseBinaryOp
|
|
|
|
|
*/
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-05-31 18:11:48 +00:00
|
|
|
template<typename OtherDerived>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_BINOP_RETURN_TYPE(std::less_equal)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::operator<=(const MatrixBase<OtherDerived> &other) const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-29 16:33:07 +00:00
|
|
|
return EIGEN_CWISE_BINOP_RETURN_TYPE(std::less_equal)(_expression(), other.derived());
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise \> operator of *this and \a other
|
2008-05-31 18:11:48 +00:00
|
|
|
*
|
2008-07-22 10:54:42 +00:00
|
|
|
* See MatrixBase::all() for an example.
|
|
|
|
|
*
|
2008-05-31 18:11:48 +00:00
|
|
|
* \sa class CwiseBinaryOp
|
|
|
|
|
*/
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-05-31 18:11:48 +00:00
|
|
|
template<typename OtherDerived>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::operator>(const MatrixBase<OtherDerived> &other) const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-29 16:33:07 +00:00
|
|
|
return EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater)(_expression(), other.derived());
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise \>= operator of *this and \a other
|
2008-05-31 18:11:48 +00:00
|
|
|
*
|
|
|
|
|
* \sa class CwiseBinaryOp
|
|
|
|
|
*/
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-05-31 18:11:48 +00:00
|
|
|
template<typename OtherDerived>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater_equal)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::operator>=(const MatrixBase<OtherDerived> &other) const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-29 16:33:07 +00:00
|
|
|
return EIGEN_CWISE_BINOP_RETURN_TYPE(std::greater_equal)(_expression(), other.derived());
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise == operator of *this and \a other
|
2008-05-31 18:11:48 +00:00
|
|
|
*
|
|
|
|
|
* \sa class CwiseBinaryOp
|
|
|
|
|
*/
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-05-31 18:11:48 +00:00
|
|
|
template<typename OtherDerived>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_BINOP_RETURN_TYPE(std::equal_to)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::operator==(const MatrixBase<OtherDerived> &other) const
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-29 16:33:07 +00:00
|
|
|
return EIGEN_CWISE_BINOP_RETURN_TYPE(std::equal_to)(_expression(), other.derived());
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
2008-06-02 20:08:37 +00:00
|
|
|
/** \array_module
|
|
|
|
|
*
|
|
|
|
|
* \returns an expression of the coefficient-wise != operator of *this and \a other
|
2008-05-31 18:11:48 +00:00
|
|
|
*
|
|
|
|
|
* \sa class CwiseBinaryOp
|
|
|
|
|
*/
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
2008-05-31 18:11:48 +00:00
|
|
|
template<typename OtherDerived>
|
2008-07-29 16:33:07 +00:00
|
|
|
inline const EIGEN_CWISE_BINOP_RETURN_TYPE(std::not_equal_to)
|
2008-07-08 00:49:10 +00:00
|
|
|
Cwise<ExpressionType>::operator!=(const MatrixBase<OtherDerived> &other) const
|
|
|
|
|
{
|
2008-07-29 16:33:07 +00:00
|
|
|
return EIGEN_CWISE_BINOP_RETURN_TYPE(std::not_equal_to)(_expression(), other.derived());
|
2008-07-08 00:49:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-07-22 10:54:42 +00:00
|
|
|
/** \array_module
|
|
|
|
|
* \returns an expression of \c *this with each coeff incremented by the constant \a scalar */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
|
|
|
|
inline const typename Cwise<ExpressionType>::ScalarAddReturnType
|
|
|
|
|
Cwise<ExpressionType>::operator+(const Scalar& scalar) const
|
|
|
|
|
{
|
|
|
|
|
return typename Cwise<ExpressionType>::ScalarAddReturnType(m_matrix, ei_scalar_add_op<Scalar>(scalar));
|
|
|
|
|
}
|
|
|
|
|
|
2008-07-22 10:54:42 +00:00
|
|
|
/** \array_module
|
|
|
|
|
* \see operator+() */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
|
|
|
|
inline ExpressionType& Cwise<ExpressionType>::operator+=(const Scalar& scalar)
|
|
|
|
|
{
|
|
|
|
|
return m_matrix.const_cast_derived() = *this + scalar;
|
|
|
|
|
}
|
|
|
|
|
|
2008-07-22 10:54:42 +00:00
|
|
|
/** \array_module
|
|
|
|
|
* \returns an expression of \c *this with each coeff decremented by the constant \a scalar */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
|
|
|
|
inline const typename Cwise<ExpressionType>::ScalarAddReturnType
|
|
|
|
|
Cwise<ExpressionType>::operator-(const Scalar& scalar) const
|
|
|
|
|
{
|
|
|
|
|
return *this + (-scalar);
|
|
|
|
|
}
|
|
|
|
|
|
2008-07-22 10:54:42 +00:00
|
|
|
/** \array_module
|
|
|
|
|
* \see operator- */
|
2008-07-08 00:49:10 +00:00
|
|
|
template<typename ExpressionType>
|
|
|
|
|
inline ExpressionType& Cwise<ExpressionType>::operator-=(const Scalar& scalar)
|
2008-05-31 18:11:48 +00:00
|
|
|
{
|
2008-07-08 00:49:10 +00:00
|
|
|
return m_matrix.const_cast_derived() = *this - scalar;
|
2008-05-31 18:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // EIGEN_ARRAY_CWISE_OPERATORS_H
|