MOAB  4.9.3pre
Eigen::internal::scalar_erf_op< Scalar > Struct Template Reference

Template functor to compute the Gauss error function of a scalar. More...

#include <UnaryFunctors.h>

List of all members.

Public Types

typedef packet_traits< Scalar >
::type 
Packet

Public Member Functions

EIGEN_DEVICE_FUNC const Scalar operator() (const Scalar &a) const
EIGEN_DEVICE_FUNC Packet packetOp (const Packet &a) const

Detailed Description

template<typename Scalar>
struct Eigen::internal::scalar_erf_op< Scalar >

Template functor to compute the Gauss error function of a scalar.

See also:
class CwiseUnaryOp, Cwise::erf()

Definition at line 457 of file UnaryFunctors.h.


Member Typedef Documentation

template<typename Scalar >
typedef packet_traits<Scalar>::type Eigen::internal::scalar_erf_op< Scalar >::Packet

Definition at line 462 of file UnaryFunctors.h.


Member Function Documentation

template<typename Scalar >
EIGEN_DEVICE_FUNC const Scalar Eigen::internal::scalar_erf_op< Scalar >::operator() ( const Scalar &  a) const [inline]

Definition at line 459 of file UnaryFunctors.h.

                                                                           {
    using numext::erf; return erf(a);
  }
template<typename Scalar >
EIGEN_DEVICE_FUNC Packet Eigen::internal::scalar_erf_op< Scalar >::packetOp ( const Packet a) const [inline]

Definition at line 463 of file UnaryFunctors.h.

{ return internal::perf(a); }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines