Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00020 EIGEN_STRONG_INLINE const CwiseUnaryOp<internal::scalar_abs_op<Scalar>, const Derived>
00021 cwiseAbs() const { return derived(); }
00022
00030 EIGEN_STRONG_INLINE const CwiseUnaryOp<internal::scalar_abs2_op<Scalar>, const Derived>
00031 cwiseAbs2() const { return derived(); }
00032
00040 inline const CwiseUnaryOp<internal::scalar_sqrt_op<Scalar>, const Derived>
00041 cwiseSqrt() const { return derived(); }
00042
00050 inline const CwiseUnaryOp<internal::scalar_inverse_op<Scalar>, const Derived>
00051 cwiseInverse() const { return derived(); }
00052
00062 inline const CwiseUnaryOp<std::binder1st<std::equal_to<Scalar> >, const Derived>
00063 cwiseEqual(const Scalar& s) const
00064 {
00065 return CwiseUnaryOp<std::binder1st<std::equal_to<Scalar> >,const Derived>
00066 (derived(), std::bind1st(std::equal_to<Scalar>(), s));
00067 }