|
MOAB
4.9.3pre
|
Template functor to compute the base-10 logarithm of a scalar. More...
#include <UnaryFunctors.h>
Public Member Functions | |
| EIGEN_DEVICE_FUNC const Scalar | operator() (const Scalar &a) const |
| template<typename Packet > | |
| EIGEN_DEVICE_FUNC Packet | packetOp (const Packet &a) const |
Template functor to compute the base-10 logarithm of a scalar.
Definition at line 263 of file UnaryFunctors.h.
| EIGEN_DEVICE_FUNC const Scalar Eigen::internal::scalar_log10_op< Scalar >::operator() | ( | const Scalar & | a | ) | const [inline] |
Definition at line 265 of file UnaryFunctors.h.
{ using std::log10; return log10(a); }
| EIGEN_DEVICE_FUNC Packet Eigen::internal::scalar_log10_op< Scalar >::packetOp | ( | const Packet & | a | ) | const [inline] |
Definition at line 267 of file UnaryFunctors.h.
{ return internal::plog10(a); }