draw.noncentral.F {UnivRNG} | R Documentation |
Generates variates from doubly non-central F distribution
Description
This function implements pseudo-random number generation for a doubly non-central distribution
where ,
,
and
are numerator and denominator degrees of freedom, respectively, and
and
are the numerator and denominator non-centrality parameters, respectively. It includes central and singly non-central F distributions as a special case.
Usage
draw.noncentral.F(nrep,dof1,dof2,ncp1,ncp2)
Arguments
nrep |
Number of data points to generate. |
dof1 |
Numerator degress of freedom. |
dof2 |
Denominator degrees of freedom. |
ncp1 |
Numerator non-centrality parameter. |
ncp2 |
Denominator non-centrality parameter. |
Value
A vector containing generated data.
See Also
Examples
draw.noncentral.F(nrep=100000,dof1=2,dof2=4,ncp1=2,ncp2=4)
[Package UnivRNG version 1.2.3 Index]