are.parkmu.valid {lmomco} | R Documentation |
Are the Distribution Parameters Consistent with the Kappa-Mu Distribution
Description
Is the distribution parameter object consistent with the corresponding distribution? The distribution functions (pdfkmu
, cdfkmu
, quakmu
, and lmomkmu
) require consistent parameters to return the cumulative probability (nonexceedance), density, quantile, and L-moments of the distribution, respectively. These functions internally use the are.parkmu.valid
function. The documentation for pdfkmu
provides the conditions for valid parameters.
Usage
are.parkmu.valid(para, nowarn=FALSE)
Arguments
para |
A distribution parameter list returned by |
nowarn |
A logical switch on warning suppression. If |
Value
TRUE |
If the parameters are |
FALSE |
If the parameters are not |
Note
This function calls is.kmu
to verify consistency between
the distribution parameter object and the intent of the user.
Author(s)
W.H. Asquith
See Also
Examples
para <- vec2par(c(0.5, 1.5), type="kmu")
if(are.parkmu.valid(para)) Q <- quakmu(0.5,para)