s_casinl.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* $OpenBSD: s_casinl.c,v 1.3 2011/07/20 21:02:51 martynas Exp $ */
  2. /*
  3. * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net>
  4. *
  5. * Permission to use, copy, modify, and distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  10. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  11. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  12. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  13. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  14. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  15. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. /* casinl()
  18. *
  19. * Complex circular arc sine
  20. *
  21. *
  22. *
  23. * SYNOPSIS:
  24. *
  25. * long double complex casinl();
  26. * long double complex z, w;
  27. *
  28. * w = casinl( z );
  29. *
  30. *
  31. *
  32. * DESCRIPTION:
  33. *
  34. * Inverse complex sine:
  35. *
  36. * 2
  37. * w = -i clog( iz + csqrt( 1 - z ) ).
  38. *
  39. *
  40. * ACCURACY:
  41. *
  42. * Relative error:
  43. * arithmetic domain # trials peak rms
  44. * DEC -10,+10 10100 2.1e-15 3.4e-16
  45. * IEEE -10,+10 30000 2.2e-14 2.7e-15
  46. * Larger relative error can be observed for z near zero.
  47. * Also tested by csin(casin(z)) = z.
  48. */
  49. #include <float.h>
  50. #include <openlibm_complex.h>
  51. #include <openlibm_math.h>
  52. #if LDBL_MANT_DIG == 64
  53. static const long double MACHEPL= 5.42101086242752217003726400434970855712890625E-20L;
  54. #elif LDBL_MANT_DIG == 113
  55. static const long double MACHEPL = 9.629649721936179265279889712924636592690508e-35L;
  56. #endif
  57. static const long double PIO2L = 1.570796326794896619231321691639751442098585L;
  58. long double complex
  59. casinl(long double complex z)
  60. {
  61. long double complex w;
  62. long double x, y, b;
  63. static long double complex ca, ct, zz, z2;
  64. x = creall(z);
  65. y = cimagl(z);
  66. if (y == 0.0L) {
  67. if (fabsl(x) > 1.0L) {
  68. w = PIO2L + 0.0L * I;
  69. /*mtherr( "casinl", DOMAIN );*/
  70. }
  71. else {
  72. w = asinl(x) + 0.0L * I;
  73. }
  74. return (w);
  75. }
  76. /* Power series expansion */
  77. b = cabsl(z);
  78. if (b < 0.125L) {
  79. long double complex sum;
  80. long double n, cn;
  81. z2 = (x - y) * (x + y) + (2.0L * x * y) * I;
  82. cn = 1.0L;
  83. n = 1.0L;
  84. ca = x + y * I;
  85. sum = x + y * I;
  86. do {
  87. ct = z2 * ca;
  88. ca = ct;
  89. cn *= n;
  90. n += 1.0L;
  91. cn /= n;
  92. n += 1.0L;
  93. b = cn/n;
  94. ct *= b;
  95. sum += ct;
  96. b = cabsl(ct);
  97. }
  98. while (b > MACHEPL);
  99. w = sum;
  100. return w;
  101. }
  102. ca = x + y * I;
  103. ct = ca * I; /* iz */
  104. /* sqrt(1 - z*z) */
  105. /* cmul(&ca, &ca, &zz) */
  106. /* x * x - y * y */
  107. zz = (x - y) * (x + y) + (2.0L * x * y) * I;
  108. zz = 1.0L - creall(zz) - cimagl(zz) * I;
  109. z2 = csqrtl(zz);
  110. zz = ct + z2;
  111. zz = clogl(zz);
  112. /* multiply by 1/i = -i */
  113. w = zz * (-1.0L * I);
  114. return (w);
  115. }