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++規格に対して遡及的に適用されました。

DR Applied to Behavior as published Correct behavior
P0935R0 C++11 デフォルトコンストラクタがexplicitであった 暗黙的(implicit)に変更