Difference between revisions of "cpp/numeric/random/piecewise linear distribution"
From cppreference.com
m (Text replace - "{{tdcl list end" to "{{dcl list end") |
m (Text replace - "{{tdcl" to "{{dcl") |
||
Line 14: | Line 14: | ||
===Member types=== | ===Member types=== | ||
{{dcl list begin}} | {{dcl list begin}} | ||
− | {{ | + | {{dcl list hitem | Member type | Definition}} |
− | {{ | + | {{dcl list item | {{tt|result_type}} | {{c|RealType}}}} |
− | {{ | + | {{dcl list item | {{tt|param_type}} | the type of the parameter set, unspecified}} |
{{dcl list end}} | {{dcl list end}} | ||
Revision as of 01:40, 12 June 2012
Template:cpp/numeric/random/piecewise linear distribution/sidebar
Defined in header <random>
|
||
template< class RealType = double > class piecewise_linear_distribution; |
(since C++11) | |
std::piecewise_linear_distribution
produces random floating-point numbers, which are distributed according to a linear probability density function within each of the several subintervals [bi, bi+1). The distribution is such that the probability density at each interval boundary is exactly the predefined value pi.
bi+1-x |
bi+1-bi |
x-bi |
bi+1-bi |
1 |
2 |
The set of interval boundaries bi and the set of weights at boundaries wi are the parameters of this distribution.
Contents |
Member types
Member type | Definition |
result_type
|
RealType |
param_type
|
the type of the parameter set, unspecified |
Member functions
Non-member functions
Example
Run this code
#include <iostream> #include <iomanip> #include <string> #include <map> #include <random> int main() { std::random_device rd; std::mt19937 gen(rd()); // increase the probability from 0 to 5 // remain flat from 5 to 10 // decrease from 10 to 15 at the same rate std::vector<double> i{0, 5, 10, 15}; std::vector<double> w{0, 1, 1, 0}; std::piecewise_linear_distribution<> d(i.begin(), i.end(), w.begin()); std::map<int, int> hist; for(int n=0; n<10000; ++n) { ++hist[d(gen)]; } for(auto p : hist) { std::cout << std::setw(2) << p.first << ' ' << std::string(p.second/100, } }
Output:
0 * 1 *** 2 **** 3 ****** 4 ********* 5 ********* 6 ********* 7 ********** 8 ********* 9 ********** 10 ********* 11 ******* 12 **** 13 *** 14 *