x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
bessel_k1.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\math\special_functions\detail\bessel_k1.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) #ifndef BOOST_MATH_BESSEL_K1_HPP #define BOOST_MATH_BESSEL_K1_HPP #include
#include
#include
// Modified Bessel function of the second kind of order one // minimax rational approximations on intervals, see // Russon and Blair, Chalk River Report AECL-3461, 1969 namespace boost { namespace math { namespace detail{ template
T bessel_k1(T x, const Policy& pol) { static const T P1[] = { static_cast
(-2.2149374878243304548e+06L), static_cast
(7.1938920065420586101e+05L), static_cast
(1.7733324035147015630e+05L), static_cast
(7.1885382604084798576e+03L), static_cast
(9.9991373567429309922e+01L), static_cast
(4.8127070456878442310e-01L) }; static const T Q1[] = { static_cast
(-2.2149374878243304548e+06L), static_cast
(3.7264298672067697862e+04L), static_cast
(-2.8143915754538725829e+02L), static_cast
(1.0L) }; static const T P2[] = { static_cast
(0.0L), static_cast
(-1.3531161492785421328e+06L), static_cast
(-1.4758069205414222471e+05L), static_cast
(-4.5051623763436087023e+03L), static_cast
(-5.3103913335180275253e+01L), static_cast
(-2.2795590826955002390e-01L) }; static const T Q2[] = { static_cast
(-2.7062322985570842656e+06L), static_cast
(4.3117653211351080007e+04L), static_cast
(-3.0507151578787595807e+02L), static_cast
(1.0L) }; static const T P3[] = { static_cast
(2.2196792496874548962e+00L), static_cast
(4.4137176114230414036e+01L), static_cast
(3.4122953486801312910e+02L), static_cast
(1.3319486433183221990e+03L), static_cast
(2.8590657697910288226e+03L), static_cast
(3.4540675585544584407e+03L), static_cast
(2.3123742209168871550e+03L), static_cast
(8.1094256146537402173e+02L), static_cast
(1.3182609918569941308e+02L), static_cast
(7.5584584631176030810e+00L), static_cast
(6.4257745859173138767e-02L) }; static const T Q3[] = { static_cast
(1.7710478032601086579e+00L), static_cast
(3.4552228452758912848e+01L), static_cast
(2.5951223655579051357e+02L), static_cast
(9.6929165726802648634e+02L), static_cast
(1.9448440788918006154e+03L), static_cast
(2.1181000487171943810e+03L), static_cast
(1.2082692316002348638e+03L), static_cast
(3.3031020088765390854e+02L), static_cast
(3.6001069306861518855e+01L), static_cast
(1.0L) }; T value, factor, r, r1, r2; BOOST_MATH_STD_USING using namespace boost::math::tools; static const char* function = "boost::math::bessel_k1<%1%>(%1%,%1%)"; if (x < 0) { return policies::raise_domain_error
(function, "Got x = %1%, but argument x must be non-negative, complex number result not supported.", x, pol); } if (x == 0) { return policies::raise_overflow_error
(function, 0, pol); } if (x <= 1) // x in (0, 1] { T y = x * x; r1 = evaluate_polynomial(P1, y) / evaluate_polynomial(Q1, y); r2 = evaluate_polynomial(P2, y) / evaluate_polynomial(Q2, y); factor = log(x); value = (r1 + factor * r2) / x; } else // x in (1, \infty) { T y = 1 / x; r = evaluate_polynomial(P3, y) / evaluate_polynomial(Q3, y); factor = exp(-x) / sqrt(x); value = factor * r; } return value; } }}} // namespaces #endif // BOOST_MATH_BESSEL_K1_HPP
bessel_k1.hpp
网页地址
文件地址
上一页
10/24
下一页
下载
( 4 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.