randWeibull
Syntax
randWeibull(alpha, beta, count)
Arguments
The scale parameter alpha and the shape parameter beta are both positive floating numbers.
count is the number of random values to be generated.
Details
Return a vector of random values with Weibull distribution.
Examples
randWeibull(2.31,0.61, 2);
// output
[0.524197, 0.51402]