Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef EIGEN2_MATH_FUNCTIONS_H
00026 #define EIGEN2_MATH_FUNCTIONS_H
00027
00028 template<typename T> inline typename NumTraits<T>::Real ei_real(const T& x) { return internal::real(x); }
00029 template<typename T> inline typename NumTraits<T>::Real ei_imag(const T& x) { return internal::imag(x); }
00030 template<typename T> inline T ei_conj(const T& x) { return internal::conj(x); }
00031 template<typename T> inline typename NumTraits<T>::Real ei_abs (const T& x) { return internal::abs(x); }
00032 template<typename T> inline typename NumTraits<T>::Real ei_abs2(const T& x) { return internal::abs2(x); }
00033 template<typename T> inline T ei_sqrt(const T& x) { return internal::sqrt(x); }
00034 template<typename T> inline T ei_exp (const T& x) { return internal::exp(x); }
00035 template<typename T> inline T ei_log (const T& x) { return internal::log(x); }
00036 template<typename T> inline T ei_sin (const T& x) { return internal::sin(x); }
00037 template<typename T> inline T ei_cos (const T& x) { return internal::cos(x); }
00038 template<typename T> inline T ei_atan2(const T& x,const T& y) { return internal::atan2(x,y); }
00039 template<typename T> inline T ei_pow (const T& x,const T& y) { return internal::pow(x,y); }
00040 template<typename T> inline T ei_random () { return internal::random<T>(); }
00041 template<typename T> inline T ei_random (const T& x, const T& y) { return internal::random(x, y); }
00042
00043 template<typename T> inline T precision () { return NumTraits<T>::dummy_precision(); }
00044 template<typename T> inline T machine_epsilon () { return NumTraits<T>::epsilon(); }
00045
00046
00047 template<typename Scalar, typename OtherScalar>
00048 inline bool ei_isMuchSmallerThan(const Scalar& x, const OtherScalar& y,
00049 typename NumTraits<Scalar>::Real precision = NumTraits<Scalar>::dummy_precision())
00050 {
00051 return internal::isMuchSmallerThan(x, y, precision);
00052 }
00053
00054 template<typename Scalar>
00055 inline bool ei_isApprox(const Scalar& x, const Scalar& y,
00056 typename NumTraits<Scalar>::Real precision = NumTraits<Scalar>::dummy_precision())
00057 {
00058 return internal::isApprox(x, y, precision);
00059 }
00060
00061 template<typename Scalar>
00062 inline bool ei_isApproxOrLessThan(const Scalar& x, const Scalar& y,
00063 typename NumTraits<Scalar>::Real precision = NumTraits<Scalar>::dummy_precision())
00064 {
00065 return internal::isApproxOrLessThan(x, y, precision);
00066 }
00067
00068 #endif // EIGEN2_MATH_FUNCTIONS_H