std::weibull_distribution::operator() (3) Linux Manual Page
std::weibull_distribution<RealType>::operator() – std::weibull_distribution<RealType>::operator() Synopsis template <class Generator> (1)(since C++ 11) result_type operator()(Generator &g); template <class Generator> (2)(since C++ 11) result_type operator()(Generator &g, const param_type ¶ms); Generates random numbers that are distributed according to the associated probability function. The entropy is acquired by calling g.operator(). The first version uses the associated parameter set, the second version…
