Namespaces
Variants

std::chi_squared_distribution<RealType>:: chi_squared_distribution

From cppreference.net
chi_squared_distribution ( ) : chi_squared_distribution ( 1.0 ) { }
(1) (C++11以降)
explicit chi_squared_distribution ( RealType n ) ;
(2) (C++11以降)
explicit chi_squared_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 default constructor was explicit made implicit