complex-tr1.qbk 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. [def __effects [*Effects: ]]
  2. [def __formula [*Formula: ]]
  3. [def __exm1 '''<code>e<superscript>x</superscript> - 1</code>''']
  4. [def __ex '''<code>e<superscript>x</superscript></code>''']
  5. [def __te '''2&#x03B5;''']
  6. [mathpart inverse_complex..Complex Number Functions]
  7. The following complex number algorithms are the inverses of trigonometric functions currently
  8. present in the C++ standard. Equivalents to these functions are part of the C99 standard, and
  9. are part of the [tr1].
  10. [section:complex_implementation Implementation and Accuracy]
  11. Although there are deceptively simple formulae available for all of these functions, a naive
  12. implementation that used these formulae would fail catastrophically for some input
  13. values. The Boost versions of these functions have been implemented using the methodology
  14. described in "Implementing the Complex Arcsine and Arccosine Functions Using Exception Handling"
  15. by T. E. Hull Thomas F. Fairgrieve and Ping Tak Peter Tang, ACM Transactions on Mathematical Software,
  16. Vol. 23, No. 3, September 1997. This means that the functions are well defined over the entire
  17. complex number range, and produce accurate values even at the extremes of that range, where as a naive
  18. formula would cause overflow or underflow to occur during the calculation, even though the result is
  19. actually a representable value. The maximum theoretical relative error for all of these functions
  20. is less than 9.5[epsilon] for every machine-representable point in the complex plane. Please refer to
  21. comments in the header files themselves and to the above mentioned paper for more information
  22. on the implementation methodology.
  23. [endsect]
  24. [section:asin asin]
  25. [h4 Header:]
  26. #include <boost/math/complex/asin.hpp>
  27. [h4 Synopsis:]
  28. template<class T>
  29. std::complex<T> asin(const std::complex<T>& z);
  30. __effects returns the inverse sine of the complex number z.
  31. __formula [$../images/asin.png]
  32. [endsect]
  33. [section:acos acos]
  34. [h4 Header:]
  35. #include <boost/math/complex/acos.hpp>
  36. [h4 Synopsis:]
  37. template<class T>
  38. std::complex<T> acos(const std::complex<T>& z);
  39. __effects returns the inverse cosine of the complex number z.
  40. __formula [$../images/acos.png]
  41. [endsect]
  42. [section:atan atan]
  43. [h4 Header:]
  44. #include <boost/math/complex/atan.hpp>
  45. [h4 Synopsis:]
  46. template<class T>
  47. std::complex<T> atan(const std::complex<T>& z);
  48. __effects returns the inverse tangent of the complex number z.
  49. __formula [$../images/atan.png]
  50. [endsect]
  51. [section:asinh asinh]
  52. [h4 Header:]
  53. #include <boost/math/complex/asinh.hpp>
  54. [h4 Synopsis:]
  55. template<class T>
  56. std::complex<T> asinh(const std::complex<T>& z);
  57. __effects returns the inverse hyperbolic sine of the complex number z.
  58. __formula [$../images/asinh.png]
  59. [endsect]
  60. [section:acosh acosh]
  61. [h4 Header:]
  62. #include <boost/math/complex/acosh.hpp>
  63. [h4 Synopsis:]
  64. template<class T>
  65. std::complex<T> acosh(const std::complex<T>& z);
  66. __effects returns the inverse hyperbolic cosine of the complex number z.
  67. __formula [$../images/acosh.png]
  68. [endsect]
  69. [section:atanh atanh]
  70. [h4 Header:]
  71. #include <boost/math/complex/atanh.hpp>
  72. [h4 Synopsis:]
  73. template<class T>
  74. std::complex<T> atanh(const std::complex<T>& z);
  75. __effects returns the inverse hyperbolic tangent of the complex number z.
  76. __formula [$../images/atanh.png]
  77. [endsect]
  78. [section:complex_history History]
  79. * 2005/12/17: Added support for platforms with no meaningful numeric_limits<>::infinity().
  80. * 2005/12/01: Initial version, added as part of the TR1 library.
  81. [endsect]
  82. [endmathpart]
  83. [/
  84. Copyright 2008, 2009 John Maddock and Paul A. Bristow.
  85. Distributed under the Boost Software License, Version 1.0.
  86. (See accompanying file LICENSE_1_0.txt or copy at
  87. http://www.boost.org/LICENSE_1_0.txt).
  88. ]