2014-07-19 11:03:13 +00:00
|
|
|
|
/*=============================================================================
|
2015-01-10 10:13:57 +00:00
|
|
|
|
Copyright (c) 2011-2015 Bolero MURAKAMI
|
2014-07-19 11:03:13 +00:00
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
=============================================================================*/
|
|
|
|
|
#ifndef SPROUT_COMPLEX_ACOS_HPP
|
|
|
|
|
#define SPROUT_COMPLEX_ACOS_HPP
|
|
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
|
#include <sprout/limits.hpp>
|
|
|
|
|
#include <sprout/math/constants.hpp>
|
|
|
|
|
#include <sprout/math/isnan.hpp>
|
|
|
|
|
#include <sprout/math/isinf.hpp>
|
|
|
|
|
#include <sprout/math/copysign.hpp>
|
|
|
|
|
#include <sprout/complex/complex.hpp>
|
|
|
|
|
#include <sprout/complex/asin.hpp>
|
|
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
|
//
|
|
|
|
|
// acos
|
|
|
|
|
//
|
|
|
|
|
// G.6.1.1 The cacos functions
|
|
|
|
|
// cacos(conj(z)) = conj(cacos(z)).
|
|
|
|
|
// cacos(<28>}0 + i0) returns p /2 - i0.
|
|
|
|
|
// cacos(<28>}0 + iNaN) returns p /2 + iNaN.
|
|
|
|
|
// cacos(x + i<><69>) returns p /2 - i<><69>, for finite x.
|
|
|
|
|
// cacos(x + iNaN) returns NaN + iNaN and optionally raises the <20>e<EFBFBD>einvalid<69>f<EFBFBD>f floating-point exception, for nonzero finite x.
|
|
|
|
|
// cacos(-<2D><>+ iy) returns p - i<><69>, for positive-signed finite y.
|
|
|
|
|
// cacos(+<2B><>+ iy) returns +0 - i<><69>, for positive-signed finite y.
|
|
|
|
|
// cacos(-<2D><>+ i<><69>) returns 3p /4 - i<><69>.
|
|
|
|
|
// cacos(+<2B><>+ i<><69>) returns p /4 - i<><69>.
|
|
|
|
|
// cacos(<28>}<7D><>+ iNaN) returns NaN <20>} i<><69> (where the sign of the imaginary part of the result is unspecified).
|
|
|
|
|
// cacos(NaN + iy) returns NaN + iNaN and optionally raises the <20>e<EFBFBD>einvalid<69>f<EFBFBD>f floating-point exception, for finite y.
|
|
|
|
|
// cacos(NaN + i<><69>) returns NaN - i<><69>.
|
|
|
|
|
// cacos(NaN + iNaN) returns NaN + iNaN.
|
|
|
|
|
//
|
|
|
|
|
namespace detail {
|
|
|
|
|
template<typename T>
|
|
|
|
|
inline SPROUT_CONSTEXPR sprout::complex<T>
|
|
|
|
|
acos_impl(sprout::complex<T> const& t) {
|
|
|
|
|
return sprout::complex<T>(sprout::math::half_pi<T>() - t.real(), -t.imag());
|
|
|
|
|
}
|
|
|
|
|
} // namespace detail
|
|
|
|
|
template<typename T>
|
|
|
|
|
inline SPROUT_CONSTEXPR sprout::complex<T>
|
|
|
|
|
acos(sprout::complex<T> const& x) {
|
|
|
|
|
typedef sprout::complex<T> type;
|
|
|
|
|
return sprout::math::isnan(x.real())
|
|
|
|
|
? sprout::math::isnan(x.imag()) ? x
|
|
|
|
|
: sprout::math::isinf(x.imag()) ? type(x.real(), -x.imag())
|
|
|
|
|
: type(x.real(), sprout::numeric_limits<T>::quiet_NaN())
|
|
|
|
|
: sprout::math::isnan(x.imag())
|
|
|
|
|
? sprout::math::isinf(x.real()) ? type(sprout::numeric_limits<T>::quiet_NaN(), x.real())
|
|
|
|
|
: x.real() == 0 ? type(sprout::math::half_pi<T>(), x.imag())
|
|
|
|
|
: type(sprout::numeric_limits<T>::quiet_NaN(), sprout::numeric_limits<T>::quiet_NaN())
|
|
|
|
|
: x.real() == sprout::numeric_limits<T>::infinity()
|
|
|
|
|
? sprout::math::isinf(x.imag()) ? type(sprout::math::quarter_pi<T>(), -x.imag())
|
|
|
|
|
: type(T(0), sprout::math::copysign(sprout::numeric_limits<T>::infinity(), -x.imag()))
|
|
|
|
|
: x.real() == -sprout::numeric_limits<T>::infinity()
|
|
|
|
|
? sprout::math::isinf(x.imag()) ? type(sprout::math::three_quarters_pi<T>(), -x.imag())
|
|
|
|
|
: type(sprout::math::pi<T>(), sprout::math::copysign(sprout::numeric_limits<T>::infinity(), -x.imag()))
|
|
|
|
|
: sprout::math::isinf(x.imag()) ? type(sprout::math::half_pi<T>(), sprout::math::copysign(sprout::numeric_limits<T>::infinity(), -x.imag()))
|
|
|
|
|
: x.real() == 0 && x.imag() == 0 ? type(sprout::math::half_pi<T>(), -x.imag())
|
|
|
|
|
: sprout::detail::acos_impl(sprout::asin(x))
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_COMPLEX_ACOS_HPP
|