public class NormalQuadrature
extends java.lang.Object
| Constructor and Description |
|---|
NormalQuadrature() |
| Modifier and Type | Method and Description |
|---|---|
static double |
CDF(double dblX)
Compute the Cumulative Distribution Function up to the specified variate
|
static double |
Density(double dblX)
Retrieve the Density at the specified Point using Zero Mean and Unit Variance
|
static double |
InverseCDF(double dblY)
Compute the Inverse CDF of the Distribution up to the specified Y
|
static double |
Random()
Generate a Random Univariate Number following a Gaussian Distribution
|
public static final double Density(double dblX)
throws java.lang.Exception
dblX - The Ordinatejava.lang.Exception - Thrown if Inputs are Invalidpublic static final double CDF(double dblX)
throws java.lang.Exception
dblX - The Variatejava.lang.Exception - thrown if the Inputs are Invalidpublic static final double InverseCDF(double dblY)
throws java.lang.Exception
dblY - Yjava.lang.Exception - Thrown if Inputs are Invalidpublic static final double Random()
throws java.lang.Exception
java.lang.Exception - Thrown the Random Number cannot be generated