20 EIGEN_STRONG_INLINE
const CwiseUnaryOp<internal::scalar_abs_op<Scalar>,
const Derived>
21 cwiseAbs()
const {
return derived(); }
30 EIGEN_STRONG_INLINE
const CwiseUnaryOp<internal::scalar_abs2_op<Scalar>,
const Derived>
31 cwiseAbs2()
const {
return derived(); }
40 inline const CwiseUnaryOp<internal::scalar_sqrt_op<Scalar>,
const Derived>
41 cwiseSqrt()
const {
return derived(); }
50 inline const CwiseUnaryOp<internal::scalar_inverse_op<Scalar>,
const Derived>
51 cwiseInverse()
const {
return derived(); }
62 inline const CwiseUnaryOp<std::binder1st<std::equal_to<Scalar> >,
const Derived>
63 cwiseEqual(
const Scalar& s)
const
65 return CwiseUnaryOp<std::binder1st<std::equal_to<Scalar> >,
const Derived>
66 (derived(), std::bind1st(std::equal_to<Scalar>(), s));