std::piecewise_constant_distribution
From cppreference.com
| ヘッダー <random> で定義 |
||
| template< class RealType = double > class piecewise_constant_distribution; |
(C++11以降) | |
std::piecewise_constant_distribution は、それぞれ固有の重み wi を持つ複数の部分区間 [bi, bi+1) のそれぞれの中で一様に分布する、浮動小数点数を生成します。区間の境界の集合と重みの集合が、この分布のパラメータです。
| wi |
| S (bi+1 - bi) |
std::piecewise_constant_distribution は、RandomNumberDistribution のすべての要件を満たします。
目次 |
[編集] テンプレートパラメータ
| RealType | - | ジェネレータによって生成される結果の型。これが float, double, または long double のいずれでもない場合、動作は未定義です。 |
[編集] メンバ型
| メンバ型 | 定義 |
result_type (C++11) |
RealType |
param_type (C++11) |
パラメータセットの型。RandomNumberDistribution を参照してください。 |
[編集] メンバ関数
| (C++11) |
新しい分布を構築します。 (public member function) |
| (C++11) |
分布の内部状態をリセットします。 (public member function) |
生成 | |
| (C++11) |
分布における次の乱数を生成する (public member function) |
特性 | |
| 分布パラメータを返します。 (public member function) | |
| (C++11) |
分布パラメータオブジェクトを取得または設定します。 (public member function) |
| (C++11) |
生成される可能性のある最小値を返します。 (public member function) |
| (C++11) |
生成される可能性のある最大値を返します。 (public member function) |
[編集] 非メンバ関数
| (C++11)(C++11)(C++20で削除) |
2つの分布オブジェクトを比較します。 (function) |
| (C++11) |
疑似乱数分布のストリーム入出力を実行 (関数テンプレート) |
[編集] 例
このコードを実行
#include <iostream> #include <map> #include <random> #include <string> int main() { std::random_device rd; std::mt19937 gen(rd()); // 50% of the time, generate a random number between 0 and 1 // 50% of the time, generate a random number between 10 and 15 std::vector<double> i {0, 1, 10, 15}; std::vector<double> w {1, 0, 1}; std::piecewise_constant_distribution<> d(i.begin(), i.end(), w.begin()); std::map<int, int> hist; for (int n {}; n < 1e4; ++n) ++hist[d(gen)]; for (std::cout << std::hex << std::uppercase; auto [x, y] : hist) std::cout << x << ' ' << std::string(y / 100, '*') << '\n'; }
実行結果の例
0 ************************************************** A ********** B ********* C ********* D ********** E *********
[編集] 参考文献
- C++23標準 (ISO/IEC 14882:2024)
- 28.5.9.6.2 Class template piecewise_constant_distribution [rand.dist.samp.pconst] (p: 1421-1422)
- C++20 standard (ISO/IEC 14882:2020)
- 29.6.9.6.2 Class template piecewise_constant_distribution [rand.dist.samp.pconst] (p: 1207-1208)
- C++17 standard (ISO/IEC 14882:2017)
- 29.6.8.6.2 Class template piecewise_constant_distribution [rand.dist.samp.pconst] (p: 1098-1100)
- C++14 standard (ISO/IEC 14882:2014)
- 26.5.8.6.2 Class template piecewise_constant_distribution [rand.dist.samp.pconst] (p: 962-964)
- C++11 standard (ISO/IEC 14882:2011)
- 26.5.8.6.2 Class template piecewise_constant_distribution [rand.dist.samp.pconst] (p: 955-957)