bb.science
Class Bootstrap.UnitTest.GaussianStandard
java.lang.Object
bb.science.Bootstrap.UnitTest.DistributionAbstract
bb.science.Bootstrap.UnitTest.GaussianStandard
- All Implemented Interfaces:
- Bootstrap.UnitTest.Distribution
- Enclosing class:
- Bootstrap.UnitTest
private static class Bootstrap.UnitTest.GaussianStandard
- extends Bootstrap.UnitTest.DistributionAbstract
Implements the standard gaussian distribution (i.e. mean = 0, sd = 1).
This class is multithread safe: it is stateless.
- See Also:
- wikipedia article
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Bootstrap.UnitTest.GaussianStandard
private Bootstrap.UnitTest.GaussianStandard()
getName
public String getName()
generateSample
public double[] generateSample(int n)
getMean
public double getMean()
getMedian
public double getMedian()
getSd
public double getSd()
getMeanEst
public Bootstrap.Estimate getMeanEst(double[] sample,
double confidenceLevel)
throws IllegalArgumentException
-
- Throws:
IllegalArgumentException
- See Also:
- this discussion
getSdEst
public Bootstrap.Estimate getSdEst(double[] sample,
double confidenceLevel)
throws IllegalArgumentException
-
- Throws:
IllegalArgumentException
- See Also:
- Confidence Interval Estimate of Standard Deviation s,
Confidence Intervals for Variance and Standard Deviation