IMSL C# Numerical Library

Random.NextF Method 

Generate a pseudorandom number from the F distribution.

public virtual double NextF(
   double dfn,
   double dfd
);

Parameters

dfn
A double, the numerator degrees of freedom. It must be positive.
dfd
A double, the denominator degrees of freedom. It must be positive.

Return Value

A double, a pseudorandom number from an F distribution

See Also

Random Class | Imsl.Stat Namespace | Example