Namespaces
Variants

std::fisher_f_distribution<RealType>:: operator()

From cppreference.net

template < class Generator >
result_type operator ( ) ( Generator & g ) ;
(1) (C++11以降)
template < class Generator >
result_type operator ( ) ( Generator & g, const param_type & params ) ;
(2) (C++11以降)

関連する確率関数に従って分布する乱数を生成します。エントロピーは g. operator ( ) を呼び出すことで取得されます。

最初のバージョンは関連付けられたパラメータセットを使用し、2番目のバージョンは params を使用します。関連付けられたパラメータセットは変更されません。

パラメータ

g - 一様乱数ビット生成器オブジェクト
params - 関連付けられたパラメータセットの代わりに使用する分布パラメータセット
型要件
-
Generator must meet the requirements of UniformRandomBitGenerator .

戻り値

生成された乱数。

計算量

償却定数回の g. operator ( ) の呼び出し。