10 #ifndef EIGEN_SPARSE_CWISE_UNARY_OP_H 11 #define EIGEN_SPARSE_CWISE_UNARY_OP_H 17 template<
typename UnaryOp,
typename ArgType>
28 Flags = XprType::Flags
34 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
37 inline Index nonZerosEstimate()
const {
38 return m_argImpl.nonZerosEstimate();
44 const UnaryOp m_functor;
48 template<
typename UnaryOp,
typename ArgType>
50 :
public unary_evaluator<CwiseUnaryOp<UnaryOp,ArgType>, IteratorBased>::EvalIterator
52 typedef typename XprType::Scalar Scalar;
57 : Base(unaryOp.m_argImpl,outer), m_functor(unaryOp.m_functor)
60 EIGEN_STRONG_INLINE InnerIterator& operator++()
61 { Base::operator++();
return *
this; }
63 EIGEN_STRONG_INLINE Scalar value()
const {
return m_functor(Base::value()); }
66 const UnaryOp m_functor;
71 template<
typename ViewOp,
typename ArgType>
82 Flags = XprType::Flags
88 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
94 const ViewOp m_functor;
98 template<
typename ViewOp,
typename ArgType>
100 :
public unary_evaluator<CwiseUnaryView<ViewOp,ArgType>, IteratorBased>::EvalIterator
102 typedef typename XprType::Scalar Scalar;
107 : Base(unaryOp.m_argImpl,outer), m_functor(unaryOp.m_functor)
110 EIGEN_STRONG_INLINE InnerIterator& operator++()
111 { Base::operator++();
return *
this; }
113 EIGEN_STRONG_INLINE Scalar value()
const {
return m_functor(Base::value()); }
114 EIGEN_STRONG_INLINE Scalar& valueRef() {
return m_functor(Base::valueRef()); }
117 const ViewOp m_functor;
122 template<
typename Derived>
123 EIGEN_STRONG_INLINE Derived&
126 for (
Index j=0; j<outerSize(); ++j)
127 for (
typename Derived::InnerIterator i(derived(),j); i; ++i)
128 i.valueRef() *= other;
132 template<
typename Derived>
133 EIGEN_STRONG_INLINE Derived&
136 for (
Index j=0; j<outerSize(); ++j)
137 for (
typename Derived::InnerIterator i(derived(),j); i; ++i)
138 i.valueRef() /= other;
144 #endif // EIGEN_SPARSE_CWISE_UNARY_OP_H const internal::remove_all< MatrixTypeNested >::type & nestedExpression() const
Definition: CwiseUnaryView.h:80
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const UnaryOp & functor() const
Definition: CwiseUnaryOp.h:75
Definition: CoreEvaluators.h:90
Definition: CoreEvaluators.h:65
const ViewOp & functor() const
Definition: CwiseUnaryView.h:76
Namespace containing all symbols from the Eigen library.
Definition: bench_norm.cpp:85
Definition: Constants.h:529
Definition: CoreEvaluators.h:109
Generic lvalue expression of a coefficient-wise unary operator of a matrix or a vector.
Definition: CwiseUnaryView.h:58
Base class of any sparse matrices or sparse expressions.
Definition: ForwardDeclarations.h:281
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
Definition: BandTriangularSolver.h:13
Definition: XprHelper.h:146
Generic expression where a coefficient-wise unary operator is applied to an expression.
Definition: CwiseUnaryOp.h:55
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const internal::remove_all< XprTypeNested >::type & nestedExpression() const
Definition: CwiseUnaryOp.h:80
An InnerIterator allows to loop over the element of any matrix expression.
Definition: CoreIterators.h:33