x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
ellint_rc.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\math\special_functions\ellint_rc.hpp
旋转
特效
属性
历史版本
// Copyright (c) 2006 Xiaogang Zhang // Use, modification and distribution are subject to 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) // // History: // XZ wrote the original of this file as part of the Google // Summer of Code 2006. JM modified it to fit into the // Boost.Math conceptual framework better, and to correctly // handle the y < 0 case. // #ifndef BOOST_MATH_ELLINT_RC_HPP #define BOOST_MATH_ELLINT_RC_HPP #include
#include
#include
// Carlson's degenerate elliptic integral // R_C(x, y) = R_F(x, y, y) = 0.5 * \int_{0}^{\infty} (t+x)^{-1/2} (t+y)^{-1} dt // Carlson, Numerische Mathematik, vol 33, 1 (1979) namespace boost { namespace math { namespace detail{ template
T ellint_rc_imp(T x, T y, const Policy& pol) { T value, S, u, lambda, tolerance, prefix; unsigned long k; BOOST_MATH_STD_USING using namespace boost::math::tools; static const char* function = "boost::math::ellint_rc<%1%>(%1%,%1%)"; if(x < 0) { return policies::raise_domain_error
(function, "Argument x must be non-negative but got %1%", x, pol); } if(y == 0) { return policies::raise_domain_error
(function, "Argument y must not be zero but got %1%", y, pol); } // error scales as the 6th power of tolerance tolerance = pow(4 * tools::epsilon
(), T(1) / 6); // for y < 0, the integral is singular, return Cauchy principal value if (y < 0) { prefix = sqrt(x / (x - y)); x = x - y; y = -y; } else prefix = 1; // duplication: k = 1; do { u = (x + y + y) / 3; S = y / u - 1; // 1 - x / u = 2 * S if (2 * abs(S) < tolerance) break; T sx = sqrt(x); T sy = sqrt(y); lambda = 2 * sx * sy + y; x = (x + lambda) / 4; y = (y + lambda) / 4; ++k; }while(k < policies::get_max_series_iterations
()); // Check to see if we gave up too soon: policies::check_series_iterations(function, k, pol); // Taylor series expansion to the 5th order value = (1 + S * S * (T(3) / 10 + S * (T(1) / 7 + S * (T(3) / 8 + S * T(9) / 22)))) / sqrt(u); return value * prefix; } } // namespace detail template
inline typename tools::promote_args
::type ellint_rc(T1 x, T2 y, const Policy& pol) { typedef typename tools::promote_args
::type result_type; typedef typename policies::evaluation
::type value_type; return policies::checked_narrowing_cast
( detail::ellint_rc_imp( static_cast
(x), static_cast
(y), pol), "boost::math::ellint_rc<%1%>(%1%,%1%)"); } template
inline typename tools::promote_args
::type ellint_rc(T1 x, T2 y) { return ellint_rc(x, y, policies::policy<>()); } }} // namespaces #endif // BOOST_MATH_ELLINT_RC_HPP
ellint_rc.hpp
网页地址
文件地址
上一页
13/35
下一页
下载
( 3 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.