命名空间
变体
操作

std::legendre,std::legendref,std::legendrel

来自 cppreference.com
 
 
 
 
定义在头文件 <cmath>
(1)
float       legendre ( unsigned int n, float x );

double      legendre ( unsigned int n, double x );

long double legendre ( unsigned int n, long double x );
(自 C++17 起)
(直到 C++23)
/* 浮点类型 */ legendre( unsigned int n,
                                    /* 浮点类型 */ x );
(自 C++23 起)
float       legendref( unsigned int n, float x );
(2) (自 C++17 起)
long double legendrel( unsigned int n, long double x );
(3) (自 C++17 起)
定义在头文件 <cmath>
template< class Integer >
double      legendre ( unsigned int n, Integer x );
(A) (自 C++17 起)
1-3) 计算度数为 n 且自变量为 x 的非关联 勒让德多项式 库为所有 cv 无限定浮点类型提供了 std::legendre 的重载,作为参数 x 的类型。(自 C++23 起)
A) 为所有整数类型提供其他重载,这些类型被视为 double

内容

[编辑] 参数

n - 多项式的次数
x - 自变量,浮点或整数值

[编辑] 返回值

如果未发生错误,则返回 xn 阶非关联勒让德多项式的值,即
1
2n
n!
dn
dxn
(x2
-1)n

[编辑] 错误处理

错误可能按 math_errhandling 中指定的方式报告。

  • 如果自变量为 NaN,则返回 NaN 且不会报告域错误
  • 该函数不需要为 |x|>1 定义
  • 如果 n 大于或等于 128,则行为由实现定义

[编辑] 注释

不支持 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 中找到。

前几个勒让德多项式为

函数 多项式
    legendre(0, x)     1
legendre(1, x) x
legendre(2, x)
1
2
(3x2
- 1)
legendre(3, x)
1
2
(5x3
- 3x)
legendre(4, x)     
1
8
(35x4
- 30x2
+ 3)
    

其他重载不需要像 (A) 一样完全提供。它们只需要足以确保,对于整数类型的参数 numstd::legendre(int_num, num)std::legendre(int_num, static_cast<double>(num)) 的效果相同。

[编辑] 示例

#include <cmath>
#include <iostream>
 
double P3(double x)
{
    return 0.5 * (5 * std::pow(x, 3) - 3 * x);
}
 
double P4(double x)
{
    return 0.125 * (35 * std::pow(x, 4) - 30 * x * x + 3);
}
 
int main()
{
    // spot-checks
    std::cout << std::legendre(3, 0.25) << '=' << P3(0.25) << '\n'
              << std::legendre(4, 0.25) << '=' << P4(0.25) << '\n';
}

输出

-0.335938=-0.335938
0.157715=0.157715

[编辑] 另请参阅

(C++17)(C++17)(C++17)
拉盖尔多项式
(函数) [编辑]
(C++17)(C++17)(C++17)
厄米特多项式
(函数) [编辑]

[编辑] 外部链接

Weisstein, Eric W. "勒让德多项式". 来自 Wolfram Web 资源 — MathWorld。