std::weibull_distribution<RealType>::weibull_distribution
提供: cppreference.com
<tbody>
</tbody>
weibull_distribution() : weibull_distribution(1.0) {} |
(1) | (C++11以上) |
explicit weibull_distribution( RealType a, RealType b = 1.0 ); |
(2) | (C++11以上) |
explicit weibull_distribution( const param_type& params ); |
(3) | (C++11以上) |
新しい分布オブジェクトを構築します。 (2) は分布のパラメータとして a と b を使用し、 (3) は分布のパラメータとして params を使用します。
引数
| a | - | 分布のパラメータ a (形状) |
| b | - | 分布のパラメータ b (尺度) |
| params | - | 分布のパラメータセット |
欠陥報告
以下の動作変更欠陥報告は以前に発行された C++ 標準に遡って適用されました。
| DR | 適用先 | 発行時の動作 | 正しい動作 |
|---|---|---|---|
| P0935R0 | C++11 | default constructor was explicit | made implicit |