MOAB
4.9.3pre
|
#include <NullaryFunctors.h>
Public Member Functions | |
linspaced_op (const Scalar &low, const Scalar &high, Index num_steps) | |
template<typename Index > | |
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar | operator() (Index i) const |
template<typename Index > | |
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar | operator() (Index row, Index col) const |
template<typename Index , typename Packet > | |
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet | packetOp (Index i) const |
template<typename Index , typename Packet > | |
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet | packetOp (Index row, Index col) const |
Public Attributes | |
const linspaced_op_impl < Scalar, PacketType,(NumTraits < Scalar >::IsInteger?true:RandomAccess), NumTraits< Scalar >::IsInteger > | impl |
Definition at line 139 of file NullaryFunctors.h.
Eigen::internal::linspaced_op< Scalar, PacketType, RandomAccess >::linspaced_op | ( | const Scalar & | low, |
const Scalar & | high, | ||
Index | num_steps | ||
) | [inline] |
Definition at line 141 of file NullaryFunctors.h.
: impl((num_steps==1 ? high : low),high,num_steps) {}
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar Eigen::internal::linspaced_op< Scalar, PacketType, RandomAccess >::operator() | ( | Index | i | ) | const [inline] |
Definition at line 146 of file NullaryFunctors.h.
{ return impl(i); }
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar Eigen::internal::linspaced_op< Scalar, PacketType, RandomAccess >::operator() | ( | Index | row, |
Index | col | ||
) | const [inline] |
Definition at line 151 of file NullaryFunctors.h.
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet Eigen::internal::linspaced_op< Scalar, PacketType, RandomAccess >::packetOp | ( | Index | i | ) | const [inline] |
Definition at line 158 of file NullaryFunctors.h.
{ return impl.packetOp(i); }
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet Eigen::internal::linspaced_op< Scalar, PacketType, RandomAccess >::packetOp | ( | Index | row, |
Index | col | ||
) | const [inline] |
Definition at line 163 of file NullaryFunctors.h.
const linspaced_op_impl<Scalar,PacketType,(NumTraits<Scalar>::IsInteger?true:RandomAccess),NumTraits<Scalar>::IsInteger> Eigen::internal::linspaced_op< Scalar, PacketType, RandomAccess >::impl |
Definition at line 174 of file NullaryFunctors.h.