Package com.imsl.stat
Interface CdfFunction
- All Known Implementing Classes:
InverseCdfEx1,RandomEx1
public interface CdfFunction
Public interface for the user-supplied cumulative distribution function
to be used by InverseCdf and ChiSquaredTest.
-
Method Summary
Modifier and TypeMethodDescriptiondoublecdf(double p) Public interface for the user-supplied cumulative distribution function to be used by InverseCdf.
-
Method Details
-
cdf
double cdf(double p) Public interface for the user-supplied cumulative distribution function to be used by InverseCdf.- Parameters:
p- adoublescalar value representing the point at which the inverse CDF is desired.- Returns:
- a
doublescalar value representing the probability that a random variable for this CDF takes a value less than or equal to this value is p.
-