__math.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:6k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright 1994-1995 The Santa Cruz Operation, Inc. All Rights Reserved. */
  2. #if defined(_NO_PROTOTYPE) /* Old, crufty environment */
  3. #include <oldstyle/__math.h>
  4. #elif defined(_XOPEN_SOURCE) || defined(_XPG4_VERS) /* Xpg4 environment */
  5. #include <xpg4/__math.h>
  6. #elif defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) /* Posix environment */
  7. #include <posix/__math.h>
  8. #elif _STRICT_ANSI  /* Pure Ansi/ISO environment */
  9. #include <ansi/__math.h>
  10. #elif defined(_SCO_ODS_30) /* Old, Tbird compatible environment */
  11. #include <ods_30_compat/__math.h>
  12. #else  /* Normal, default environment */
  13. /*
  14.  *   Portions Copyright (C) 1983-1995 The Santa Cruz Operation, Inc.
  15.  * All Rights Reserved.
  16.  *
  17.  * The information in this file is provided for the exclusive use of
  18.  * the licensees of The Santa Cruz Operation, Inc.  Such users have the
  19.  * right to use, modify, and incorporate this code into other products
  20.  * for purposes authorized by the license agreement provided they include
  21.  * this notice and the associated copyright notice with any such product.
  22.  * The information in this file is provided "AS IS" without warranty.
  23.  */
  24. /* Portions Copyright (c) 1990, 1991, 1992, 1993 UNIX System Laboratories, Inc. */
  25. /* Portions Copyright (c) 1979 - 1990 AT&T   */
  26. /*   All Rights Reserved   */
  27. /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF          */
  28. /* UNIX System Laboratories, Inc.                          */
  29. /* The copyright notice above does not evidence any        */
  30. /* actual or intended publication of such source code.     */
  31. #ifndef ___MATH_H
  32. #define ___MATH_H
  33. #pragma comment(exestr, "xpg4plus @(#) math.h 20.1 94/12/04 ")
  34. #pragma pack(4)
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. extern double acos(double);
  39. extern double asin(double);
  40. extern double atan(double);
  41. extern double atan2(double, double);
  42. extern double cos(double);
  43. extern double sin(double);
  44. extern double tan(double);
  45. extern double cosh(double);
  46. extern double sinh(double);
  47. extern double tanh(double);
  48. extern double exp(double);
  49. extern double frexp(double, int *);
  50. extern double ldexp(double, int);
  51. extern double log(double);
  52. extern double log10(double);
  53. extern double modf(double, double *);
  54. extern double pow(double, double);
  55. extern double sqrt(double);
  56. extern double ceil(double);
  57. extern double fabs(double);
  58. extern double floor(double);
  59. extern double fmod(double, double);
  60. #ifndef HUGE_VAL
  61. extern const double __huge_val;
  62. #define HUGE_VAL (+__huge_val)
  63. #endif
  64. extern double erf(double);
  65. extern double erfc(double);
  66. extern double gamma(double);
  67. extern double hypot(double, double);
  68. extern double j0(double);
  69. extern double j1(double);
  70. extern double jn(int, double);
  71. extern double y0(double);
  72. extern double y1(double);
  73. extern double yn(int, double);
  74. extern double lgamma(double);
  75. extern int isnan(double);
  76. #define MAXFLOAT ((float)3.40282346638528860e+38)
  77. #define HUGE MAXFLOAT
  78. /*
  79.  * The following are all legal as XPG4 external functions but must only
  80.  * be declared in the non standards environments as they conflict with
  81.  * the user name space
  82.  */
  83.  
  84. extern long double frexpl(long double, int *);
  85. extern long double ldexpl(long double, int);
  86. extern long double modfl(long double, long double *);
  87. extern float acosf(float);
  88. extern float asinf(float);
  89. extern float atanf(float);
  90. extern float atan2f(float, float);
  91. extern float cosf(float);
  92. extern float sinf(float);
  93. extern float tanf(float);
  94. extern float coshf(float);
  95. extern float sinhf(float);
  96. extern float tanhf(float);
  97. extern float expf(float);
  98. extern float logf(float);
  99. extern float log10f(float);
  100. extern float powf(float, float);
  101. extern float sqrtf(float);
  102. extern float ceilf(float);
  103. extern float fabsf(float);
  104. extern float floorf(float);
  105. extern float fmodf(float, float);
  106. extern float modff(float, float *);
  107. /* These are all extensions from XPG4 */
  108. extern double atof(const char *);
  109. extern double scalb(double, double);
  110. extern double logb(double);
  111. extern double log1p(double);
  112. extern double nextafter(double, double);
  113. extern double acosh(double);
  114. extern double asinh(double);
  115. extern double atanh(double);
  116. extern double cbrt(double);
  117. extern double copysign(double, double);
  118. extern double expm1(double);
  119. extern int ilogb(double);
  120. extern double remainder(double, double);
  121. extern double rint(double);
  122. extern int unordered(double, double);
  123. extern int finite(double);
  124. extern long double scalbl(long double, long double);
  125. extern long double logbl(long double);
  126. extern long double nextafterl(long double, long double);
  127. extern int unorderedl(long double, long double);
  128. extern int finitel(long double);
  129. extern int signgam;
  130. #define M_E 2.7182818284590452354
  131. #define M_LOG2E 1.4426950408889634074
  132. #define M_LOG10E 0.43429448190325182765
  133. #define M_LN2 0.69314718055994530942
  134. #define M_LN10 2.30258509299404568402
  135. #define M_PI 3.14159265358979323846
  136. #define M_PI_2 1.57079632679489661923
  137. #define M_PI_4 0.78539816339744830962
  138. #define M_1_PI 0.31830988618379067154
  139. #define M_2_PI 0.63661977236758134308
  140. #define M_2_SQRTPI 1.12837916709551257390
  141. #define M_SQRT2 1.41421356237309504880
  142. #define M_SQRT1_2 0.70710678118654752440
  143. #define _ABS(x) ((x) < 0 ? -(x) : (x))
  144. #define _REDUCE(TYPE, X, XN, C1, C2) { 
  145. double x1 = (double)(TYPE)X, x2 = X - x1; 
  146. X = x1 - (XN) * (C1); X += x2; X -= (XN) * (C2); }
  147. #define DOMAIN 1
  148. #define SING 2
  149. #define OVERFLOW 3
  150. #define UNDERFLOW 4
  151. #define TLOSS 5
  152. #define PLOSS 6
  153. #define _POLY1(x, c) ((c)[0] * (x) + (c)[1])
  154. #define _POLY2(x, c) (_POLY1((x), (c)) * (x) + (c)[2])
  155. #define _POLY3(x, c) (_POLY2((x), (c)) * (x) + (c)[3])
  156. #define _POLY4(x, c) (_POLY3((x), (c)) * (x) + (c)[4])
  157. #define _POLY5(x, c) (_POLY4((x), (c)) * (x) + (c)[5])
  158. #define _POLY6(x, c) (_POLY5((x), (c)) * (x) + (c)[6])
  159. #define _POLY7(x, c) (_POLY6((x), (c)) * (x) + (c)[7])
  160. #define _POLY8(x, c) (_POLY7((x), (c)) * (x) + (c)[8])
  161. #define _POLY9(x, c) (_POLY8((x), (c)) * (x) + (c)[9])
  162. #ifdef __cplusplus
  163. }
  164. inline int sqr(int i) {return(i*i);}
  165. inline double sqr(double i) {return(i*i);}
  166. #endif /* __cplusplus */
  167. #pragma pack()
  168. #if __cplusplus && !defined(PI)
  169. #define PI M_PI
  170. #endif  /* __cplusplus  */
  171. #endif /* _MATH_H */
  172. #endif