25package umontreal.ssj.randvar;
27import umontreal.ssj.rng.*;
28import umontreal.ssj.probdist.*;
93 throw new IllegalArgumentException(
"m <= 0");
95 throw new IllegalArgumentException(
"n <= 0");
Extends the class ContinuousDistribution for the Fisher F distribution with and degrees of freedom,...
double inverseF(double u)
Returns the inverse distribution function .
int getM()
Returns the parameter of this object.
FisherFGen(RandomStream s, int n, int m)
Creates a Fisher F random variate generator with and.
FisherFGen(RandomStream s, FisherFDist dist)
Creates a new generator for the distribution dist, using stream s.
int getN()
Returns the parameter of this object.
void setParams(int n, int m)
Sets the parameters and of this object.
static double nextDouble(RandomStream s, int n, int m)
Generates a variate from the Fisher F distribution with and degrees of freedom, using stream s.
This interface defines the basic structures to handle multiple streams of uniform (pseudo)random numb...
double nextDouble()
Returns a (pseudo)random number from the uniform distribution over the interval , using this stream,...