std::student_t_distribution<RealType>::student_t_distribution

 
 
数值库
常用数学函数
数学特殊函数 (C++17)
数学常数 (C++20)
浮点环境 (C++11)
复数
数值数组
伪随机数生成
编译时有理数算术 (C++11)
数值算法
(C++17)
(C++17)
插值
(C++20)
(C++20)
通用数值运算
(C++11)
位操作
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
 
 
 
student_t_distribution() : student_t_distribution(1) {}
(1) (C++11 起)
explicit student_t_distribution( RealType n );
(2) (C++11 起)
explicit student_t_distribution( const param_type& params );
(3) (C++11 起)

构造新的分布对象。 (2)n 为分布参数, (3)params 为分布参数。

参数

n - n 分布参数(自由度)
params - 分布参数集

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

DR 应用于 出版时的行为 正确行为
P0935R0 C++11 默认构造函数曾为 explicit 使之为隐式