template<typename T>
std::vector<T>
gen_weibull_dist(std::size_t n, const RandGenParams<T> ¶ms = { });
|
Produces random non-negative floating-point values x, distributed according to probability density function:
see https://en.cppreference.com/w/cpp/numeric/random/weibull_distribution
It returns the vector of results
Optional parameters to set:
alpha (shape), beta (scale), seed
|
T: Type can only be float, double, or long double
n: Number of numerics to generate
params: List of all applicable parameters, see DataFrameTypes.h
|