std::lognormal_distribution<RealType>::m, s
From cppreference.com
< cpp | numeric | random | lognormal distribution
| RealType m() const; |
(1) | (C++11以降) |
| RealType s() const; |
(2) | (C++11以降) |
コンストラクタに渡されたパラメータを返します。
1) 対数正規分布のパラメータである対数平均 m を返します。これはピークの位置を定義します。デフォルト値は 0.0 です。
2) 対数正規分布のパラメータである対数標準偏差 s を返します。デフォルト値は 1.0 です。
[編集] パラメータ
(なし)
[編集] 戻り値
1) 対数正規分布のパラメータである対数平均 m。
2) 対数正規分布のパラメータである対数標準偏差 s。
[編集] 関連項目
| (C++11) |
分布パラメータオブジェクトを取得または設定します。 (public member function) |