[rand.dist.samp.plinear] (original) (raw)

A piecewise_linear_distribution random number distribution produces random numbers x,, distributed over each subintervalaccording to the probability density function in Formula 29.21.

The distribution parameters , also known as this distribution's interval boundaries, shall satisfy the relation for .

Unless specified otherwise, the remaining distribution parameters are calculated as for , in which the values , commonly known as the weights at boundaries, shall be non-negative, non-NaN, and non-infinity.

Moreover, the following relation shall hold:

namespace std { template<class RealType = double> class piecewise_linear_distribution { public: using result_type = RealType;using param_type = unspecified; piecewise_linear_distribution();template<class InputIteratorB, class InputIteratorW> piecewise_linear_distribution(InputIteratorB firstB, InputIteratorB lastB, InputIteratorW firstW);template<class UnaryOperation> piecewise_linear_distribution(initializer_list<RealType> bl, UnaryOperation fw);template<class UnaryOperation> piecewise_linear_distribution(size_t nw, RealType xmin, RealType xmax, UnaryOperation fw);explicit piecewise_linear_distribution(const param_type& parm);void reset();friend bool operator==(const piecewise_linear_distribution& x,const piecewise_linear_distribution& y);template<class URBG> result_type operator()(URBG& g);template<class URBG> result_type operator()(URBG& g, const param_type& parm); vector<result_type> intervals() const; vector<result_type> densities() const; param_type param() const;void param(const param_type& parm); result_type min() const; result_type max() const;template<class charT, class traits> friend basic_ostream<charT, traits>& operator<<(basic_ostream<charT, traits>& os, const piecewise_linear_distribution& x);template<class charT, class traits> friend basic_istream<charT, traits>& operator>>(basic_istream<charT, traits>& is, piecewise_linear_distribution& x);};}

Effects: Constructs a piecewise_linear_distribution object with ,,, and .

If firstB == lastB or ++firstB == lastB, let ,,, and .

Otherwise,[firstB, lastB) forms a sequence b of length , the length of the sequence w starting from firstW is at least , and any for are ignored by the distribution.

Effects: Constructs a piecewise_linear_distribution object with parameters as specified above.

Mandates: is_invocable_r_v<double, UnaryOperation&, double> is true.

Effects: Constructs a piecewise_linear_distribution object with parameters taken or calculated from the following values: If , let ,,, and .

Otherwise, let [bl.begin(), bl.end()) form a sequence , and let for .

Complexity: The number of invocations of fw does not exceed .

Mandates: is_invocable_r_v<double, UnaryOperation&, double> is true.

Preconditions: If , let , otherwise let .

The relation holds.

Effects: Constructs a piecewise_linear_distribution object with parameters taken or calculated from the following values: Let for , and for .

Complexity: The number of invocations of fw does not exceed .

Returns: A vector<result_type> whose size member returns and whose operator[] member returns when invoked with argument k for .

Returns: A vector<result_type> whose size member returns n and whose operator[] member returns when invoked with argument k for .