TruncatedDistribution

constructor(distribution: DistributionIfc, cdfLowerLimit: Double, cdfUpperLimit: Double, lowerLimit: Double, upperLimit: Double, name: String? = null)(source)

Parameters

distribution

the distribution to truncate, must not be null

cdfLowerLimit

The lower limit of the range of support of the distribution

cdfUpperLimit

The upper limit of the range of support of the distribution

lowerLimit

The truncated lower limit (if moved in from cdfLL), must be >= cdfLL

upperLimit

The truncated upper limit (if moved in from cdfUL), must be <= cdfUL

name

an optional name/label


constructor(distribution: DistributionIfc, distDomain: Interval, truncInterval: Interval, name: String? = null)(source)