gsl_sf_ellint.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* specfunc/gsl_sf_ellint.h
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. /* Author: G. Jungman */
  20. #ifndef __GSL_SF_ELLINT_H__
  21. #define __GSL_SF_ELLINT_H__
  22. #include "gsl_mode.h"
  23. #include "gsl_sf_result.h"
  24. #undef __BEGIN_DECLS
  25. #undef __END_DECLS
  26. #ifdef __cplusplus
  27. # define __BEGIN_DECLS extern "C" {
  28. # define __END_DECLS }
  29. #else
  30. # define __BEGIN_DECLS /* empty */
  31. # define __END_DECLS /* empty */
  32. #endif
  33. __BEGIN_DECLS
  34. /* Legendre form of complete elliptic integrals
  35. *
  36. * K(k) = Integral[1/Sqrt[1 - k^2 Sin[t]^2], {t, 0, Pi/2}]
  37. * E(k) = Integral[ Sqrt[1 - k^2 Sin[t]^2], {t, 0, Pi/2}]
  38. *
  39. * exceptions: GSL_EDOM
  40. */
  41. int gsl_sf_ellint_Kcomp_e(double k, gsl_mode_t mode, gsl_sf_result * result);
  42. double gsl_sf_ellint_Kcomp(double k, gsl_mode_t mode);
  43. int gsl_sf_ellint_Ecomp_e(double k, gsl_mode_t mode, gsl_sf_result * result);
  44. double gsl_sf_ellint_Ecomp(double k, gsl_mode_t mode);
  45. int gsl_sf_ellint_Pcomp_e(double k, double n, gsl_mode_t mode, gsl_sf_result * result);
  46. double gsl_sf_ellint_Pcomp(double k, double n, gsl_mode_t mode);
  47. int gsl_sf_ellint_Dcomp_e(double k, gsl_mode_t mode, gsl_sf_result * result);
  48. double gsl_sf_ellint_Dcomp(double k, gsl_mode_t mode);
  49. /* Legendre form of incomplete elliptic integrals
  50. *
  51. * F(phi,k) = Integral[1/Sqrt[1 - k^2 Sin[t]^2], {t, 0, phi}]
  52. * E(phi,k) = Integral[ Sqrt[1 - k^2 Sin[t]^2], {t, 0, phi}]
  53. * P(phi,k,n) = Integral[(1 + n Sin[t]^2)^(-1)/Sqrt[1 - k^2 Sin[t]^2], {t, 0, phi}]
  54. * D(phi,k,n) = R_D(1-Sin[phi]^2, 1-k^2 Sin[phi]^2, 1.0)
  55. *
  56. * F: [Carlson, Numerische Mathematik 33 (1979) 1, (4.1)]
  57. * E: [Carlson, ", (4.2)]
  58. * P: [Carlson, ", (4.3)]
  59. * D: [Carlson, ", (4.4)]
  60. *
  61. * exceptions: GSL_EDOM
  62. */
  63. int gsl_sf_ellint_F_e(double phi, double k, gsl_mode_t mode, gsl_sf_result * result);
  64. double gsl_sf_ellint_F(double phi, double k, gsl_mode_t mode);
  65. int gsl_sf_ellint_E_e(double phi, double k, gsl_mode_t mode, gsl_sf_result * result);
  66. double gsl_sf_ellint_E(double phi, double k, gsl_mode_t mode);
  67. int gsl_sf_ellint_P_e(double phi, double k, double n, gsl_mode_t mode, gsl_sf_result * result);
  68. double gsl_sf_ellint_P(double phi, double k, double n, gsl_mode_t mode);
  69. int gsl_sf_ellint_D_e(double phi, double k, double n, gsl_mode_t mode, gsl_sf_result * result);
  70. double gsl_sf_ellint_D(double phi, double k, double n, gsl_mode_t mode);
  71. /* Carlson's symmetric basis of functions
  72. *
  73. * RC(x,y) = 1/2 Integral[(t+x)^(-1/2) (t+y)^(-1)], {t,0,Inf}]
  74. * RD(x,y,z) = 3/2 Integral[(t+x)^(-1/2) (t+y)^(-1/2) (t+z)^(-3/2), {t,0,Inf}]
  75. * RF(x,y,z) = 1/2 Integral[(t+x)^(-1/2) (t+y)^(-1/2) (t+z)^(-1/2), {t,0,Inf}]
  76. * RJ(x,y,z,p) = 3/2 Integral[(t+x)^(-1/2) (t+y)^(-1/2) (t+z)^(-1/2) (t+p)^(-1), {t,0,Inf}]
  77. *
  78. * exceptions: GSL_EDOM
  79. */
  80. int gsl_sf_ellint_RC_e(double x, double y, gsl_mode_t mode, gsl_sf_result * result);
  81. double gsl_sf_ellint_RC(double x, double y, gsl_mode_t mode);
  82. int gsl_sf_ellint_RD_e(double x, double y, double z, gsl_mode_t mode, gsl_sf_result * result);
  83. double gsl_sf_ellint_RD(double x, double y, double z, gsl_mode_t mode);
  84. int gsl_sf_ellint_RF_e(double x, double y, double z, gsl_mode_t mode, gsl_sf_result * result);
  85. double gsl_sf_ellint_RF(double x, double y, double z, gsl_mode_t mode);
  86. int gsl_sf_ellint_RJ_e(double x, double y, double z, double p, gsl_mode_t mode, gsl_sf_result * result);
  87. double gsl_sf_ellint_RJ(double x, double y, double z, double p, gsl_mode_t mode);
  88. __END_DECLS
  89. #endif /* __GSL_SF_ELLINT_H__ */