次の方法で共有


exponential_distribution::param_type

分布のパラメーターを格納します。

struct param_type {     typedef exponential_distribution<RealType> distribution_type;     param_type(RealType lambda = 1.0);     RealType lambda() const;     .....     bool operator==(const param_type& right) const;     bool operator!=(const param_type& right) const; };

パラメーター

親トピック「exponential_distribution クラス」を参照してください。

解説

前提条件: 0.0 < lambda

この構造体は、インスタンス化時に分布のクラス コンストラクターに渡したり、param() メンバー関数に渡して、既存の分布の格納されているパラメーターを設定したり、operator() に渡して、格納されているパラメーターの代わりに使用したりすることができます。

必要条件

ヘッダー: <random>

名前空間: std

参照

関連項目

<random>

exponential_distribution クラス