Difference between revisions of "cpp/numeric/random/discrete distribution/probabilities"
From cppreference.com
< cpp | numeric | random | discrete distribution
m (Use since= and until= params of {{dcl}} template.) |
m (langlinks) |
||
Line 33: | Line 33: | ||
}} | }} | ||
− | + | deesfritjaptruzh | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
Revision as of 17:09, 28 November 2021
std::vector<double> probabilities() const; |
(since C++11) | |
Obtains a std::vector<double> containing the individual probabilities of each integer that is generated by this distribution.
Parameters
(none)
Return value
An object of type std::vector<double>
Example
Run this code
#include <iostream> #include <vector> #include <random> int main() { std::discrete_distribution<> d({40, 10, 10, 40}); std::vector<double> p = d.probabilities(); for(auto n : p) std::cout << n << ' '; std::cout << '\n'; }
Output:
0.4 0.1 0.1 0.4