Class DistConstant
java.lang.Object
nl.tudelft.simulation.jstats.distributions.Dist
nl.tudelft.simulation.jstats.distributions.DistContinuous
nl.tudelft.simulation.jstats.distributions.DistConstant
- All Implemented Interfaces:
Serializable
The Constant distribution. For more information on this distribution see
https://mathworld.wolfram.com/ContinuousDistribution.html
Copyright (c) 2002-2024 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:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionDistConstant(StreamInterface stream, double constant) constructs a new constant distribution. -
Method Summary
Modifier and TypeMethodDescriptiondoubledraw()draws the next stream value according to the probability of this this distribution.doubleReturn the constant.doublegetProbabilityDensity(double x) returns the probability density value of a value x.toString()
-
Constructor Details
-
DistConstant
constructs a new constant distribution.- Parameters:
stream- StreamInterface; the random number streamconstant- double; the value
-
-
Method Details
-
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
-
getConstant
public double getConstant()Return the constant.- Returns:
- double; the constant
-
toString
-