命名空间
变体
操作

std::beta, std::betaf, std::betal

来自 cppreference.com
 
 
 
 
定义在头文件 <cmath>
(1)
float       beta ( float x, float y );

double      beta ( double x, double y );

long double beta ( long double x, long double y );
(自 C++17 起)
(直到 C++23)
/* 浮点类型 */ beta( /* 浮点类型 */ x,
                                /* 浮点类型 */ y );
(自 C++23 起)
float       betaf( float x, float y );
(2) (自 C++17 起)
long double betal( long double x, long double y );
(3) (自 C++17 起)
定义在头文件 <cmath>
template< class Arithmetic1, class Arithmetic2 >
/* 公共浮点类型 */ beta( Arithmetic1 x, Arithmetic2 y );
(A) (自 C++17 起)
1-3) 计算 xyBeta 函数 该库为所有 cv 无限定浮点类型提供了 std::beta 的重载,作为参数 xy 的类型。(自 C++23 起)
A) 为所有其他算术类型组合提供了附加重载。

内容

[编辑] 参数

x, y - 浮点或整数值

[编辑] 返回值

如果未出现错误,则返回 xy 的 Beta 函数值,即 1
0
tx-1
(1-t)(y-1)
dt
,或者等效地,
Γ(x)Γ(y)
Γ(x+y)

[编辑] 错误处理

错误可能如 math_errhandling 中所述进行报告。

  • 如果任何参数为 NaN,则返回 NaN 且不报告域错误。
  • 该函数仅在 xy 都大于零时才需要定义,并且允许在其他情况下报告域错误。

[编辑] 说明

不支持 C++17 但支持 ISO 29124:2010 的实现,如果 __STDCPP_MATH_SPEC_FUNCS__ 由实现定义为至少 201003L 的值,并且如果用户在包含任何标准库头文件之前定义 __STDCPP_WANT_MATH_SPEC_FUNCS__,则提供此函数。

不支持 ISO 29124:2010 但支持 TR 19768:2007 (TR1) 的实现,在头文件 tr1/cmath 和命名空间 std::tr1 中提供此函数。

此函数的实现也 在 boost.math 中可用

std::beta(x, y) 等于 std::beta(y, x)

xy 为正整数时,std::beta(x, y) 等于
(x-1)!(y-1)!
(x+y-1)!
。二项式系数可以用 Beta 函数表示:

n
k


=
1
(n+1)Β(n-k+1,k+1)

不需要完全按照 (A) 的方式提供附加重载。它们只需要足够保证对于其第一个参数 num1 和第二个参数 num2

  • 如果 num1num2 的类型为 long double,则 std::beta(num1, num2) 的效果与 std::beta(static_cast<long double>(num1),
              static_cast<long double>(num2))
    相同。
  • 否则,如果 num1 和/或 num2 的类型为 double 或整数类型,则 std::beta(num1, num2) 的效果与 std::beta(static_cast<double>(num1),
              static_cast<double>(num2))
    相同。
  • 否则,如果 num1num2 的类型为 float,则 std::beta(num1, num2) 的效果与 std::beta(static_cast<float>(num1),
              static_cast<float>(num2))
    相同。
(直到 C++23)

如果 num1num2 具有算术类型,则 std::beta(num1, num2) 的效果与 std::beta(static_cast</* common-floating-point-type */>(num1),
          static_cast</* common-floating-point-type */>(num2))
相同,其中 /* common-floating-point-type */num1num2 类型之间具有最大 浮点转换等级 和最大 浮点转换子等级 的浮点类型,整数类型的参数被认为与 double 具有相同的浮点转换等级。

如果不存在具有最大等级和子等级的这种浮点类型,则 重载解析 不会从提供的重载中产生可用的候选者。

(自 C++23 起)

[edit] 示例

#include <cassert>
#include <cmath>
#include <iomanip>
#include <iostream>
#include <numbers>
#include <string>
 
long binom_via_beta(int n, int k)
{
    return std::lround(1 / ((n + 1) * std::beta(n - k + 1, k + 1)));
}
 
long binom_via_gamma(int n, int k)
{
    return std::lround(std::tgamma(n + 1) /
                      (std::tgamma(n - k + 1) * 
                       std::tgamma(k + 1)));
}
 
int main()
{
    std::cout << "Pascal's triangle:\n";
    for (int n = 1; n < 10; ++n)
    {
        std::cout << std::string(20 - n * 2, ' ');
        for (int k = 1; k < n; ++k)
        {
            std::cout << std::setw(3) << binom_via_beta(n, k) << ' ';
            assert(binom_via_beta(n, k) == binom_via_gamma(n, k));
        }
        std::cout << '\n';
    }
 
    // A spot-check
    const long double p = 0.123; // a random value in [0, 1]
    const long double q = 1 - p;
    const long double π = std::numbers::pi_v<long double>;
    std::cout << "\n\n" << std::setprecision(19)
              << "β(p,1-p)   = " << std::beta(p, q) << '\n'
              << "π/sin(π*p) = " << π / std::sin(π * p) << '\n';
}

输出

Pascal's triangle:
 
                  2
                3   3
              4   6   4
            5  10  10   5
          6  15  20  15   6
        7  21  35  35  21   7
      8  28  56  70  56  28   8
    9  36  84 126 126  84  36   9
 
β(p,1-p)   = 8.335989149587307836
π/sin(π*p) = 8.335989149587307834

[edit] 另请参阅

(C++11)(C++11)(C++11)
伽马函数
(函数) [edit]

[edit] 外部链接

Weisstein, Eric W. "Beta Function." 来自 MathWorld — Wolfram Web 资源。