overload.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  file = overload.h
  3. //
  4. #ifndef _OVERLOAD_H_
  5. #define _OVERLOAD_H_ 
  6. #include <math.h>
  7.   
  8. double conj(const double);
  9. double mag(const double);
  10. double mag_sqrd(const double);
  11. inline double conj(const double _z)
  12.   { return _z; }
  13. inline double mag(const double _z) { return fabs(_z); }
  14. inline double mag_sqrd(const double _z) { return _z*_z; }
  15. #endif // _OVERLOAD_H_