2012-05-04 14:23:39 +00:00
|
|
|
#ifndef SPROUT_MATH_ASIN_HPP
|
|
|
|
#define SPROUT_MATH_ASIN_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <limits>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-12-08 04:45:09 +00:00
|
|
|
#include <sprout/detail/pow.hpp>
|
2012-06-23 04:22:50 +00:00
|
|
|
#include <sprout/math/detail/config.hpp>
|
2013-02-14 09:02:43 +00:00
|
|
|
#include <sprout/math/detail/float_compute.hpp>
|
2012-05-04 14:23:39 +00:00
|
|
|
#include <sprout/math/constants.hpp>
|
|
|
|
#include <sprout/math/factorial.hpp>
|
|
|
|
#include <sprout/math/sqrt.hpp>
|
2012-05-26 15:43:38 +00:00
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
2012-05-04 14:23:39 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace math {
|
|
|
|
namespace detail {
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR T
|
2012-12-08 04:45:09 +00:00
|
|
|
asin_impl_1(T x, std::size_t n, std::size_t last) {
|
|
|
|
return last - n == 1
|
|
|
|
? sprout::math::factorial<T>(2 * n)
|
|
|
|
/ sprout::detail::pow_n(T(4), n) / sprout::detail::pow2(sprout::math::factorial<T>(n)) / (2 * n + 1)
|
|
|
|
* sprout::detail::pow_n(x, 2 * n + 1)
|
|
|
|
: sprout::math::detail::asin_impl_1(x, n, n + (last - n) / 2)
|
|
|
|
+ sprout::math::detail::asin_impl_1(x, n + (last - n) / 2, last)
|
2012-05-04 14:23:39 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR T
|
|
|
|
asin_impl(T x) {
|
|
|
|
return x > sprout::math::half_root_two<T>()
|
2012-12-08 04:45:09 +00:00
|
|
|
? sprout::math::half_pi<T>() - sprout::math::detail::asin_impl_1(sprout::math::sqrt(1 - x * x), 0, sprout::math::factorial_limit<T>() / 2 + 1)
|
|
|
|
: x + sprout::math::detail::asin_impl_1(x, 1, sprout::math::factorial_limit<T>() / 2 + 1)
|
2012-05-04 14:23:39 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR FloatType
|
|
|
|
asin(FloatType x) {
|
2013-02-14 09:02:43 +00:00
|
|
|
typedef typename sprout::math::detail::float_compute<FloatType>::type type;
|
|
|
|
return x == 0 ? FloatType(0)
|
|
|
|
: x > 1 || x < -1 ? std::numeric_limits<FloatType>::quiet_NaN()
|
2012-05-04 14:23:39 +00:00
|
|
|
: x < 0 ? -static_cast<FloatType>(sprout::math::detail::asin_impl(static_cast<type>(-x)))
|
|
|
|
: static_cast<FloatType>(sprout::math::detail::asin_impl(static_cast<type>(x)))
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<
|
|
|
|
typename IntType,
|
|
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR double
|
|
|
|
asin(IntType x) {
|
|
|
|
return sprout::math::detail::asin(static_cast<double>(x));
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
|
2012-06-23 04:22:50 +00:00
|
|
|
using NS_SPROUT_MATH_DETAIL::asin;
|
2012-05-04 14:23:39 +00:00
|
|
|
} // namespace math
|
|
|
|
|
|
|
|
using sprout::math::asin;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_ASIN_HPP
|