public class NormalDistribution
extends java.lang.Object
| Constructor and Description |
|---|
NormalDistribution() |
| Modifier and Type | Method and Description |
|---|---|
static double |
getCumulativeDistribution(double x)
Calculate the normal cumulative density function according to formula 4.5
from Vazquez-Leal, H., Castaneda-Sheissa, R., Filobello-Nino, U.,
Sarmiento-Reyes, A., & Sanchez Orea, J. (2012).
|
static double |
getInverseCumulativeDistribution(double p) |
static double |
getNormalDistributionDensity(double z)
Calculates the density of the normal distribution function
|
public static double getInverseCumulativeDistribution(double p)
p - The probability, e. g. the percent rank in psychodiagnosticspublic static double getNormalDistributionDensity(double z)
z - the standardized value of a raw value with m = 0.0 and sd =
1.0public static double getCumulativeDistribution(double x)
x - Standardized value (m = .0, sd = 1.0)