[def __effects [*Effects: ]] [def __formula [*Formula: ]] [def __exm1 '''ex - 1'''] [def __ex '''ex'''] [def __te '''2ε'''] [section:inverse_complex Complex Number Inverse Trigonometric Functions] The following complex number algorithms are the inverses of trigonometric functions currently present in the C++ standard. Equivalents to these functions are part of the C99 standard, and will be part of the forthcoming Technical Report on C++ Standard Library Extensions. [section Implementation and Accuracy] Although there are deceptively simple formulae available for all of these functions, a naive implementation that used these formulae would fail catastrophically for some input values. The Boost versions of these functions have been implemented using the methodology described in "Implementing the Complex Arcsine and Arccosine Functions Using Exception Handling" by T. E. Hull Thomas F. Fairgrieve and Ping Tak Peter Tang, ACM Transactions on Mathematical Software, Vol. 23, No. 3, September 1997. This means that the functions are well defined over the entire complex number range, and produce accurate values even at the extremes of that range, where as a naive formula would cause overflow or underflow to occur during the calculation, even though the result is actually a representable value. The maximum theoretical relative error for all of these functions is less than 9.5E for every machine-representable point in the complex plane. Please refer to comments in the header files themselves and to the above mentioned paper for more information on the implementation methodology. [endsect] [section:asin asin] [h4 Header:] #include [h4 Synopsis:] template std::complex asin(const std::complex& z); __effects returns the inverse sine of the complex number z. __formula [$../../libs/math/doc/images/asin.png] [endsect] [section:acos acos] [h4 Header:] #include [h4 Synopsis:] template std::complex acos(const std::complex& z); __effects returns the inverse cosine of the complex number z. __formula [$../../libs/math/doc/images/acos.png] [endsect] [section:atan atan] [h4 Header:] #include [h4 Synopsis:] template std::complex atan(const std::complex& z); __effects returns the inverse tangent of the complex number z. __formula [$../../libs/math/doc/images/atan.png] [endsect] [section:asinh asinh] [h4 Header:] #include [h4 Synopsis:] template std::complex asinh(const std::complex& z); __effects returns the inverse hyperbolic sine of the complex number z. __formula [$../../libs/math/doc/images/asinh.png] [endsect] [section:acosh acosh] [h4 Header:] #include [h4 Synopsis:] template std::complex acosh(const std::complex& z); __effects returns the inverse hyperbolic cosine of the complex number z. __formula [$../../libs/math/doc/images/acosh.png] [endsect] [section:atanh atanh] [h4 Header:] #include [h4 Synopsis:] template std::complex atanh(const std::complex& z); __effects returns the inverse hyperbolic tangent of the complex number z. __formula [$../../libs/math/doc/images/atanh.png] [endsect] [section History] * 2005/12/17: Added support for platforms with no meaningful numeric_limits<>::infinity(). * 2005/12/01: Initial version, added as part of the TR1 library. [endsect] [endsect]