Go to the documentation of this file.
11 #ifndef EIGEN_GLOBAL_FUNCTIONS_H
12 #define EIGEN_GLOBAL_FUNCTIONS_H
14 #ifdef EIGEN_PARSED_BY_DOXYGEN
16 #define EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(NAME,FUNCTOR,DOC_OP,DOC_DETAILS) \
23 template<typename Derived> \
24 inline const Eigen::CwiseUnaryOp<Eigen::internal::FUNCTOR<typename Derived::Scalar>, const Derived> \
25 NAME(const Eigen::ArrayBase<Derived>& x);
29 #define EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(NAME,FUNCTOR,DOC_OP,DOC_DETAILS) \
30 template<typename Derived> \
31 inline const Eigen::CwiseUnaryOp<Eigen::internal::FUNCTOR<typename Derived::Scalar>, const Derived> \
32 (NAME)(const Eigen::ArrayBase<Derived>& x) { \
33 return Eigen::CwiseUnaryOp<Eigen::internal::FUNCTOR<typename Derived::Scalar>, const Derived>(x.derived()); \
36 #endif // EIGEN_PARSED_BY_DOXYGEN
38 #define EIGEN_ARRAY_DECLARE_GLOBAL_EIGEN_UNARY(NAME,FUNCTOR) \
40 template<typename Derived> \
41 struct NAME##_retval<ArrayBase<Derived> > \
43 typedef const Eigen::CwiseUnaryOp<Eigen::internal::FUNCTOR<typename Derived::Scalar>, const Derived> type; \
45 template<typename Derived> \
46 struct NAME##_impl<ArrayBase<Derived> > \
48 static inline typename NAME##_retval<ArrayBase<Derived> >::type run(const Eigen::ArrayBase<Derived>& x) \
50 return typename NAME##_retval<ArrayBase<Derived> >::type(x.derived()); \
100 #ifdef EIGEN_PARSED_BY_DOXYGEN
101 template<
typename Derived,
typename ScalarExponent>
102 inline const CwiseBinaryOp<internal::scalar_pow_op<Derived::Scalar,ScalarExponent>,Derived,Constant<ScalarExponent> >
105 template<
typename Derived,
typename ScalarExponent>
109 return x.derived().pow(exponent);
112 template<
typename Derived>
115 return x.derived().pow(exponent);
130 template<
typename Derived,
typename ExponentDerived>
153 #ifdef EIGEN_PARSED_BY_DOXYGEN
154 template<
typename Scalar,
typename Derived>
158 template<
typename Scalar,
typename Derived>
167 template<
typename Derived>
187 #endif // EIGEN_GLOBAL_FUNCTIONS_H
const AutoDiffScalar< DerType > & conj(const AutoDiffScalar< DerType > &x)
const EIGEN_DEVICE_FUNC SqrtReturnType sqrt() const
const EIGEN_DEVICE_FUNC SinReturnType sin() const
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC bool() isfinite(const half &a)
const EIGEN_DEVICE_FUNC InverseReturnType inverse() const
const EIGEN_DEVICE_FUNC ErfReturnType erf() const
Generic expression where a coefficient-wise binary operator is applied to two expressions.
const EIGEN_DEVICE_FUNC AtanReturnType atan() const
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half pow(const half &a, const half &b)
const EIGEN_DEVICE_FUNC ErfcReturnType erfc() const
const EIGEN_DEVICE_FUNC SignReturnType sign() const
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC bool() isinf(const half &a)
const EIGEN_DEVICE_FUNC LogReturnType log() const
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Abs2ReturnType abs2() const
const EIGEN_DEVICE_FUNC AsinReturnType asin() const
const EIGEN_DEVICE_FUNC ExpReturnType exp() const
internal::enable_if< !(internal::is_same< typename Derived::Scalar, Scalar >::value) &&EIGEN_SCALAR_BINARY_SUPPORTED(pow, Scalar, typename Derived::Scalar), const EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(Scalar, Derived, pow) >::type pow(const Scalar &x, const Eigen::ArrayBase< Derived > &exponents)
const EIGEN_DEVICE_FUNC Log1pReturnType log1p() const
const EIGEN_DEVICE_FUNC CoshReturnType cosh() const
const EIGEN_DEVICE_FUNC DigammaReturnType digamma() const
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE AbsReturnType abs() const
#define EIGEN_ARRAY_DECLARE_GLOBAL_EIGEN_UNARY(NAME, FUNCTOR)
const EIGEN_DEVICE_FUNC LgammaReturnType lgamma() const
const EIGEN_DEVICE_FUNC SquareReturnType square() const
internal::enable_if< !(internal::is_same< typename Derived::Scalar, ScalarExponent >::value) &&EIGEN_SCALAR_BINARY_SUPPORTED(pow, typename Derived::Scalar, ScalarExponent), const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(Derived, ScalarExponent, pow) >::type pow(const Eigen::ArrayBase< Derived > &x, const ScalarExponent &exponent)
const EIGEN_DEVICE_FUNC ImagReturnType imag() const
internal::traits< ArrayWrapper< ExpressionType > >::Scalar Scalar
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE ArgReturnType arg() const
const EIGEN_DEVICE_FUNC TanReturnType tan() const
const EIGEN_DEVICE_FUNC RsqrtReturnType rsqrt() const
const EIGEN_DEVICE_FUNC AcosReturnType acos() const
const EIGEN_DEVICE_FUNC CubeReturnType cube() const
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE CwiseAbs2ReturnType cwiseAbs2() const
Base class for all 1D and 2D array, and related expressions.
EIGEN_DEVICE_FUNC ConjugateReturnType conjugate() const
const Eigen::CwiseBinaryOp< Eigen::internal::scalar_pow_op< typename Derived::Scalar, typename ExponentDerived::Scalar >, const Derived, const ExponentDerived > pow(const Eigen::ArrayBase< Derived > &x, const Eigen::ArrayBase< ExponentDerived > &exponents)
const EIGEN_DEVICE_FUNC TanhReturnType tanh() const
DerType::Scalar imag(const AutoDiffScalar< DerType > &)
const EIGEN_DEVICE_FUNC CwiseSqrtReturnType cwiseSqrt() const
const EIGEN_DEVICE_FUNC CeilReturnType ceil() const
const EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(typename Derived::Scalar, Derived, pow) pow(const typename Derived
CwiseNullaryOp< scalar_constant_op< Scalar >, const typename conditional< is_same< typename traits< Expr >::XprKind, MatrixXpr >::value, matrix_type, array_type >::type > type
const EIGEN_DEVICE_FUNC RoundReturnType round() const
const EIGEN_DEVICE_FUNC SinhReturnType sinh() const
#define EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(NAME, FUNCTOR, DOC_OP, DOC_DETAILS)
const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(Derived, typename Derived::Scalar, pow) pow(const Eigen
const EIGEN_DEVICE_FUNC CosReturnType cos() const
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC bool() isnan(const half &a)
const EIGEN_DEVICE_FUNC Log10ReturnType log10() const
const EIGEN_DEVICE_FUNC FloorReturnType floor() const
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE CwiseAbsReturnType cwiseAbs() const
#define EIGEN_SCALAR_BINARY_SUPPORTED(OPNAME, TYPEA, TYPEB)
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:47