C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 常用数学函数
- 数学特殊函数
- std::assoc_laguerre, std::assoc_laguerref, std::assoc_laguerrel
- std::assoc_legendre, std::assoc_legendref, std::assoc_legendrel
- std::beta, std::betaf, std::betal
- std::comp_ellint_1, std::comp_ellint_1f, std::comp_ellint_1l
- std::comp_ellint_2, std::comp_ellint_2f, std::comp_ellint_2l
- std::comp_ellint_3, std::comp_ellint_3f, std::comp_ellint_3l
- std::cyl_bessel_i, std::cyl_bessel_if, std::cyl_bessel_il
- std::cyl_bessel_j, std::cyl_bessel_jf, std::cyl_bessel_jl
- std::cyl_bessel_k, std::cyl_bessel_kf, std::cyl_bessel_kl
- std::cyl_neumann, std::cyl_neumannf, std::cyl_neumannl
- std::ellint_1, std::ellint_1f, std::ellint_1l
- std::ellint_2, std::ellint_2f, std::ellint_2l
- std::ellint_3, std::ellint_3f, std::ellint_3l
- std::expint, std::expintf, std::expintl
- std::hermite, std::hermitef, std::hermitel
- std::laguerre, std::laguerref, std::laguerrel
- std::legendre, std::legendref, std::legendrel
- std::riemann_zeta, std::riemann_zetaf, std::riemann_zetal
- std::sph_bessel, std::sph_besself, std::sph_bessell
- std::sph_legendre, std::sph_legendref, std::sph_legendrel
- std::sph_neumann, std::sph_neumannf, std::sph_neumannl
- std::midpoint
- std::lerp
- std::has_single_bit
- std::bit_ceil
- std::bit_floor
- std::bit_width
- std::rotl
- 伪随机数生成
- 浮点环境
- std::complex
- std::valarray
- 编译时有理数算术
- std::gcd
- std::lcm
- 数学常数
- std::bit_cast
- std::rotr
- std::countl_zero
- std::countl_one
- std::countr_zero
- std::countr_one
- std::popcount
- 注释
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::legendre, std::legendref, std::legendrel
定义于头文件 <cmath>
|
||
double legendre( unsigned int n, double x ); float legendre( unsigned int n, float x ); |
(1) | (C++17 起) |
double legendre( unsigned int n, IntegralType x ); |
(2) | (C++17 起) |
参数
n | - | 多项式的次数 |
x | - | 参数,浮点或整数类型的值 |
返回值
若无错误发生,则返回x
的 n
阶非关联勒让德多项式的值,即 1 |
2n n! |
dn |
dxn |
-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) =
(3x21 2
-1) - legendre(3, x) =
(5x31 2
-3x) - legendre(4, x) =
(35x41 8
-30x2
+3)
示例
运行此代码
#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() { // 点检查 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. “勒让德多项式”来自 MathWorld--A Wolfram Web Resource 。