MathRandomWeibull
MathRandomWeibull
MathRandomWeibull
Generates a pseudorandom variable distributed according to the law of Weibull distribution with the a and b parameters. In case of error it returns NaN.
double MathRandomWeibull(
const double a, // parameter of the distribution (shape)
const double b, // parameter of the distribution (scale)
int& error_code // variable to store the error code
);Generates pseudorandom variables distributed according to the law of Weibull distribution with the a and b parameters. In case of error it returns false. Analog of the rweibull() in R.
bool MathRandomWeibull(
const double a, // parameter of the distribution (shape)
const double b, // parameter of the distribution (scale)
const int data_count, // amount of required data
double& result[] // array with values of pseudorandom variables
);Parameters
- a
[in] Parameter of the distribution (scale).
- b
[in] Parameter of the distribution (shape).
- error_code
[out] Variable to store the error code.
- data_count
[out] Amount of required data.
- result[]
[out] Array to obtain the values of pseudorandom variables.
Last updated on