std::hermite,std::hermitef,std::hermitel
来自 cppreference.com
< cpp | experimental | 特殊函数
double hermite( unsigned int n, double x ); double hermite( unsigned int n, float x ); |
(1) | |
double hermite( unsigned int n, IntegralType x ); |
(2) | |
作为所有特殊函数,hermite
仅在实现将 __STDCPP_MATH_SPEC_FUNCS__
定义为至少 201003L 的值,并且用户在包含任何标准库头文件之前定义 __STDCPP_WANT_MATH_SPEC_FUNCS__
时才保证在 <cmath>
中可用。
内容 |
[编辑] 参数
n | - | 多项式的次数 |
x | - | 参数,浮点型或整型值 |
[编辑] 返回值
如果未发生错误,则返回 x 的 n 阶厄米多项式的值,即 (-1)nex2
dn |
dxn |
.
[编辑] 错误处理
错误可能按 math_errhandling 中指定的方式报告。
- 如果参数是 NaN,则返回 NaN 且不会报告域错误。
- 如果 n 大于或等于 128,则行为由实现定义。
[编辑] 说明
不支持 TR 29124 但支持 TR 19768 的实现,在头文件 tr1/cmath
和命名空间 std::tr1
中提供此函数。
此函数的实现也 在 boost.math 中可用.
厄米多项式是方程 u,,
- 2xu,
= -2nu 的多项式解。
前几个是
- hermite(0, x) = 1.
- hermite(1, x) = 2x.
- hermite(2, x) = 4x2
- 2. - hermite(3, x) = 8x3
- 12x. - hermite(4, x) = 16x4
- 48x2
+ 12.
[编辑] 示例
(使用 gcc 6.0 运行效果如图所示)
运行此代码
#define __STDCPP_WANT_MATH_SPEC_FUNCS__ 1 #include <cmath> #include <iostream> double H3(double x) { return 8 * std::pow(x, 3) - 12 * x; } double H4(double x) { return 16 * std::pow(x, 4) - 48 * x * x + 12; } int main() { // spot-checks std::cout << std::hermite(3, 10) << '=' << H3(10) << '\n' << std::hermite(4, 10) << '=' << H4(10) << '\n'; }
输出
7880=7880 155212=155212
[编辑] 参见
拉盖尔多项式 (函数) | |
勒让德多项式 (函数) |
[编辑] 外部链接
Weisstein, Eric W. ""Hermite Polynomial." 来自 MathWorld--Wolfram 网络资源。