public class NonSymmetricalNormalDistribution extends java.lang.Object implements Distribution
| Constructor and Description |
|---|
NonSymmetricalNormalDistribution(double mean,
double stdDown,
double stdUp)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Double |
getCumulativeProbabilityAt(double x)
Returns the cumulative density function value at a given position.
|
java.lang.Double |
getDescendingCumulativeProbabilityAt(double x)
Returns the cumulative density function value at a given position when
starting from the high values.
|
java.lang.Double |
getMaxValueForProbability(double p)
The value after which the density function will be smaller than p.
|
java.lang.Double |
getMinValueForProbability(double p)
The value before which the density function will be smaller than p.
|
java.lang.Double |
getProbabilityAt(double x)
Returns the density function value at a given position.
|
static NonSymmetricalNormalDistribution |
getRobustNonSymmetricalNormalDistribution(java.util.ArrayList<java.lang.Double> input)
Returns the non-symmetrical distribution of the input list of double
calibrated on the median, 15.9% and 84.1% percentiles.
|
java.lang.Double |
getValueAtCumulativeProbability(double p)
The value after which the cumulative density function will be smaller
than p.
|
java.lang.Double |
getValueAtDescendingCumulativeProbability(double p)
The value after which the cumulative density function will be smaller
than p when starting from high values.
|
public NonSymmetricalNormalDistribution(double mean,
double stdDown,
double stdUp)
mean - the meanstdDown - the standard deviation on the left of the meanstdUp - the standard deviation on the right of the meanpublic static NonSymmetricalNormalDistribution getRobustNonSymmetricalNormalDistribution(java.util.ArrayList<java.lang.Double> input)
input - the input listpublic java.lang.Double getProbabilityAt(double x)
DistributiongetProbabilityAt in interface Distributionx - the position of interestpublic java.lang.Double getCumulativeProbabilityAt(double x)
throws org.apache.commons.math.MathException
DistributiongetCumulativeProbabilityAt in interface Distributionx - the position of interestorg.apache.commons.math.MathExceptionpublic java.lang.Double getMaxValueForProbability(double p)
DistributiongetMaxValueForProbability in interface Distributionp - the probability of interestpublic java.lang.Double getMinValueForProbability(double p)
DistributiongetMinValueForProbability in interface Distributionp - the probability of interestpublic java.lang.Double getValueAtCumulativeProbability(double p)
throws org.apache.commons.math.MathException
DistributiongetValueAtCumulativeProbability in interface Distributionp - the probability of interestorg.apache.commons.math.MathExceptionpublic java.lang.Double getDescendingCumulativeProbabilityAt(double x)
throws org.apache.commons.math.MathException
DistributiongetDescendingCumulativeProbabilityAt in interface Distributionx - the position of interestorg.apache.commons.math.MathExceptionpublic java.lang.Double getValueAtDescendingCumulativeProbability(double p)
throws org.apache.commons.math.MathException
DistributiongetValueAtDescendingCumulativeProbability in interface Distributionp - the probability of interestorg.apache.commons.math.MathExceptionCopyright © 2014. All Rights Reserved.