bernoulli_distribution クラス

更新 : 2007 年 11 月

ベルヌイ分布を生成します。

class bernoulli_distribution {
public:
    typedef int input_type;
    typedef bool result_type;
    explicit bernoulli_distribution(double p0 = 0.5);
    double p() const;
    void reset();
    template<class Engine>
        result_type operator()(Engine& eng);
private:
    const double stored_p;  // exposition only
    };

解説

このクラスは、コンストラクタの引数によって指定された確率で true を返す、bool 型の値を生成する分布を表します。

必要条件

ヘッダー : <random>

名前空間 : std::tr1

参照

参照

<random>

binomial_distribution クラス

exponential_distribution クラス

gamma_distribution クラス

geometric_distribution クラス

normal_distribution クラス

poisson_distribution クラス

uniform_int クラス

uniform_real クラス