共用方式為


piecewise_constant_distribution::param_type

儲存分佈的所有參數。

struct param_type {     typedef piecewise_constant_distribution<RealType> distribution_type;     param_type();     template<class IterI, class IterW>     param_type(IterI firstI, IterI lastI, IterW firstW);     template<class UnaryOperation>     param_type(size_t count, RealType xmin, RealType xmax,          UnaryOperation weightfunc);     std::vector<RealType> densities() const;     std::vector<RealType> intervals() const;     .....     bool operator==(const param_type& right) const;     bool operator!=(const param_type& right) const; };

參數

請參閱父主題 piecewise_constant_distribution 類別

備註

前置條件: xmin < xmax

此結構可在具現化時傳遞至分佈的類別建構函式,傳遞至 param() 成員函式可設定現有分佈之儲存的參數,傳遞至 operator() 可用於取代儲存的參數。

需求

標頭:<random>

命名空間: std

請參閱

參考

<random>

piecewise_constant_distribution 類別