Class ContinuousDistributionTest
- java.lang.Object
-
- nl.tudelft.simulation.jstats.distributions.ContinuousDistributionTest
-
public class ContinuousDistributionTest extends Object
DistributionTest tests the correct statistics of the Normal and LogNormal distributions, based on a tally of their values.Copyright (c) 2020-2023 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information DSOL Manual. The DSOL project is distributed under a three-clause BSD-style license, which can be found at DSOL License.
- Author:
- Alexander Verbraeck
-
-
Field Summary
Fields Modifier and Type Field Description (package private) StreamInterfacestreamthe random stream to use.
-
Constructor Summary
Constructors Constructor Description ContinuousDistributionTest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidtestBeta()Test the Beta distribution.voidtestConstant()Test the Constant distribution.voidtestDistributionsMeanVariance()Test the distributions for the correct stats based on a tally of their values.voidtestErlang()Test the Erlang distribution.voidtestExponential()Test the Exponential distribution.voidtestGamma()Test the Gamma distribution.voidtestPearson5()Test the Pearson5 distribution.voidtestPearson6()Test the Pearson6 distribution.voidtestTriangular()Test the Triangular distribution.voidtestUniform()Test the Uniform distribution.voidtestWeibull()Test the Weibull distribution.
-
-
-
Field Detail
-
stream
StreamInterface stream
the random stream to use.
-
-
Method Detail
-
testDistributionsMeanVariance
public void testDistributionsMeanVariance()
Test the distributions for the correct stats based on a tally of their values.
-
testBeta
public void testBeta()
Test the Beta distribution.
-
testConstant
public void testConstant()
Test the Constant distribution.
-
testErlang
public void testErlang()
Test the Erlang distribution.
-
testExponential
public void testExponential()
Test the Exponential distribution.
-
testGamma
public void testGamma()
Test the Gamma distribution.
-
testPearson5
public void testPearson5()
Test the Pearson5 distribution.
-
testPearson6
public void testPearson6()
Test the Pearson6 distribution.
-
testTriangular
public void testTriangular()
Test the Triangular distribution.
-
testUniform
public void testUniform()
Test the Uniform distribution.
-
testWeibull
public void testWeibull()
Test the Weibull distribution.
-
-