Go to the source code of this file.
Macros | |
#define | EIGEN_MAKE_CWISE_COMP_OP(OP, COMPARATOR) |
#define | EIGEN_MAKE_CWISE_COMP_R_OP(OP, R_OP, RCOMPARATOR) |
Functions | |
template<typename OtherDerived > | |
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE | EIGEN_CWISE_BINARY_RETURN_TYPE (Derived, OtherDerived, product) operator*(const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const |
template<typename OtherDerived > | |
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE CwiseBinaryOp< internal::scalar_quotient_op< Scalar, typename OtherDerived::Scalar >, const Derived, const OtherDerived > | operator/ (const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const |
template<typename OtherDerived > | |
const EIGEN_DEVICE_FUNC CwiseBinaryOp< internal::scalar_boolean_xor_op, const Derived, const OtherDerived > | operator^ (const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const |
template<typename DerivedQ > | |
const CwiseBinaryOp< internal::scalar_zeta_op< Scalar >, const Derived, const DerivedQ > | zeta (const EIGEN_CURRENT_STORAGE_BASE_CLASS< DerivedQ > &q) const |
#define EIGEN_MAKE_CWISE_COMP_OP | ( | OP, | |
COMPARATOR | |||
) |
*this
to the given array of exponents.This function computes the coefficient-wise power.
Example:
Output:
Definition at line 134 of file ArrayCwiseBinaryOps.h.
#define EIGEN_MAKE_CWISE_COMP_R_OP | ( | OP, | |
R_OP, | |||
RCOMPARATOR | |||
) |
Definition at line 152 of file ArrayCwiseBinaryOps.h.
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE EIGEN_CWISE_BINARY_RETURN_TYPE | ( | Derived | , |
OtherDerived | , | ||
product | |||
) | const & |
*this
and other Definition at line 8 of file ArrayCwiseBinaryOps.h.
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE CwiseBinaryOp<internal::scalar_quotient_op<Scalar,typename OtherDerived::Scalar>, const Derived, const OtherDerived> operator/ | ( | const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > & | other | ) | const |
*this
and other Definition at line 21 of file ArrayCwiseBinaryOps.h.
|
inline |
Example:
Output:
Example:
Output:
Example:
Output:
Example:
Output:
Example:
Output:
Example:
Output:
Example:
Output:
Definition at line 310 of file ArrayCwiseBinaryOps.h.
|
inline |
\specialfunctions_module
It returns the Riemann zeta function of two arguments *this
and q:
q | is the shift, it must be > 0 |
This method is an alias for zeta(*this,q);
Definition at line 355 of file ArrayCwiseBinaryOps.h.