Namespaces
Variants

std::student_t_distribution<RealType>:: student_t_distribution

From cppreference.net
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++标准。

缺陷报告 适用范围 发布时行为 正确行为
P0935R0 C++11 默认构造函数为显式 改为隐式