Class DistPearson6
- java.lang.Object
-
- nl.tudelft.simulation.jstats.distributions.Dist
-
- nl.tudelft.simulation.jstats.distributions.DistContinuous
-
- nl.tudelft.simulation.jstats.distributions.DistPearson6
-
- All Implemented Interfaces:
Serializable
public class DistPearson6 extends DistContinuous
The Pearson6 distribution. For more information on this distribution see https://mathworld.wolfram.com/Pearson6Distribution.htmlCopyright (c) 2002-2023 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information https://simulation.tudelft.nl. The DSOL project is distributed under a three-clause BSD-style license, which can be found at https://https://simulation.tudelft.nl/dsol/docs/latest/license.html.
- Author:
- Peter Jacobs , Alexander Verbraeck
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DistPearson6(StreamInterface stream, double alpha1, double alpha2, double beta)constructs a new Pearson6 distribution.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doubledraw()draws the next stream value according to the probability of this this distribution.doublegetAlpha1()Return the first shape parameter α1.doublegetAlpha2()Return the second shape parameter α2.doublegetBeta()Return the scale parameter β.doublegetProbabilityDensity(double x)returns the probability density value of a value x.voidsetStream(StreamInterface stream)Replace the random number stream.StringtoString()
-
-
-
Constructor Detail
-
DistPearson6
public DistPearson6(StreamInterface stream, double alpha1, double alpha2, double beta)
constructs a new Pearson6 distribution.- Parameters:
stream- StreamInterface; the random number streamalpha1- double; the first shape parameteralpha2- double; the second shape parameterbeta- double; the scale parameter- Throws:
IllegalArgumentException- when alpha1 <= 0 or alpha2 <= 0 or beta <= 0
-
-
Method Detail
-
draw
public double draw()
draws the next stream value according to the probability of this this distribution.- Specified by:
drawin classDistContinuous- Returns:
- the next double value drawn.
-
getProbabilityDensity
public double getProbabilityDensity(double x)
returns the probability density value of a value x.- Specified by:
getProbabilityDensityin classDistContinuous- Parameters:
x- double; the value for which the density function needs to be calculated- Returns:
- double; the probability density for value x
-
getAlpha1
public double getAlpha1()
Return the first shape parameter α1.- Returns:
- double; the first shape parameter α1
-
getAlpha2
public double getAlpha2()
Return the second shape parameter α2.- Returns:
- double; the second shape parameter α2
-
getBeta
public double getBeta()
Return the scale parameter β.- Returns:
- double; the scale parameter β
-
setStream
public void setStream(StreamInterface stream)
Replace the random number stream.
-
-