home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / SPECFUNC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  1.2 KB  |  63 lines

  1.  
  2. # define NearZero 1.0E-20
  3. # define Tolerance 1.0E-10
  4.  
  5.  
  6. void DisplayErrorMessage(int ErrorFlag);
  7.  
  8. float PolyCalc(float XIn,float CoefVector[],int order);
  9.  
  10. float PowerCalc(float x,float a);
  11.  
  12. float LogGamma(float x);
  13.  
  14. float Gamma(float x,int *ErrorFlag);
  15.  
  16. float IncGamma(float a,float x);
  17.  
  18. float IncGammaComp(float a,float x);
  19.  
  20. float Bessel(float order,float x,int *ErrorFlag);
  21.  
  22. float Tan(float x);
  23.  
  24. float Cosh(float z);
  25.  
  26. float Sinh(float z);
  27.  
  28. float Sech(float z);
  29.  
  30. float ArcTanh(float x);
  31.  
  32. float ErrFuncIter(float x);
  33.  
  34. float ErrFunc(float x,int *ErrorFlag);
  35.  
  36. float ErrFuncComp(float x,int *ErrorFlag);
  37.  
  38. float ErrFuncR(float x,float y, int *ErrorFlag);
  39.  
  40. float ErrFuncI(float x,float y);
  41.  
  42. float GaussHyper(float a,float b,float c,float z);
  43.  
  44. float KumrConf(float a,float b,float z);
  45.  
  46. float AssocConf(float a,float b,float z);
  47.  
  48. float Hermite(int n,float x,int *ErrorFlag);
  49.  
  50. float Legend(int n,float x,int *ErrorFlag);
  51.  
  52. float Laguerre(int n,float a,float x,int *ErrorFlag);
  53.  
  54. float Tcheb(int n,float x,int *ErrorFlag);
  55.  
  56. float ModBesselI(float n,float x,int *ErrorFlag);
  57.  
  58. float ModBesselK(float n,float x,int *ErrorFlag);
  59.  
  60. float Beta(float z,float w,int *ErrorFlag);
  61.  
  62. float IncBeta(float a,float b,float x);
  63.