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