14 typedef CwiseUnaryOp<internal::scalar_abs_op<Scalar>,
const Derived> CwiseAbsReturnType;
15 typedef CwiseUnaryOp<internal::scalar_abs2_op<Scalar>,
const Derived> CwiseAbs2ReturnType;
16 typedef CwiseUnaryOp<internal::scalar_sqrt_op<Scalar>,
const Derived> CwiseSqrtReturnType;
17 typedef CwiseUnaryOp<internal::scalar_sign_op<Scalar>,
const Derived> CwiseSignReturnType;
18 typedef CwiseUnaryOp<internal::scalar_inverse_op<Scalar>,
const Derived> CwiseInverseReturnType;
28 EIGEN_STRONG_INLINE
const CwiseAbsReturnType
29 cwiseAbs()
const {
return CwiseAbsReturnType(derived()); }
39 EIGEN_STRONG_INLINE
const CwiseAbs2ReturnType
40 cwiseAbs2()
const {
return CwiseAbs2ReturnType(derived()); }
50 inline const CwiseSqrtReturnType
51 cwiseSqrt()
const {
return CwiseSqrtReturnType(derived()); }
60 inline const CwiseSignReturnType
61 cwiseSign()
const {
return CwiseSignReturnType(derived()); }
72 inline const CwiseInverseReturnType
73 cwiseInverse()
const {
return CwiseInverseReturnType(derived()); }