PWCEmpiricalRV

class PWCEmpiricalRV(breakPoints: DoubleArray, proportions: DoubleArray = DoubleArray(breakPoints.size - 1) { 1.0 / (breakPoints.size - 1) }, stream: RNStreamIfc = KSLRandom.nextRNStream()) : RVariable

Represents a piece-wise continuous empirical random variable specified via intervals defined by breakpoints and probabilities associated with each interval. A piecewise linear approximation forms the basis for the CDF where the breakpoints form the linear segments. There must be at least 1 interval (and two breakpoints).

Parameters

breakPoints

The break points defining the intervals such that pj is associated with breakpoints bj and bj+1 for j = 0, 1,..., n-1, where n is the number of break points. The number of breakpoints should be 1 more than the number of proportions. The breakpoints must be strictly increasing and finite.

proportions

A double array holding the proportion associated with the intervals defined by the breakpoints. All proportions must be strictly greater than 0 and strictly less than 1. If not supplied, the default is intervals with equal probability. That is, with proportion equal to 1.0/(n - 1).

stream

The random number stream.

Constructors

Link copied to clipboard
constructor(breakPoints: DoubleArray, proportions: DoubleArray = DoubleArray(breakPoints.size - 1) { 1.0 / (breakPoints.size - 1) }, streamNum: Int)
constructor(histogram: HistogramIfc, stream: RNStreamIfc = KSLRandom.nextRNStream())

Note the requirements for breakpoints and proportions.

constructor(histogram: HistogramIfc, streamNum: Int)

Note the requirements for breakpoints and proportions.

constructor(breakPoints: DoubleArray, proportions: DoubleArray = DoubleArray(breakPoints.size - 1) { 1.0 / (breakPoints.size - 1) }, stream: RNStreamIfc = KSLRandom.nextRNStream())

Properties

Link copied to clipboard

If true, the stream will automatically participate in having its stream advanced to the next sub-stream via stream managers

Link copied to clipboard
open override var antithetic: Boolean

Tells the stream to start producing antithetic variates

Link copied to clipboard
open override val emitter: Emitter<Double>
Link copied to clipboard
open override val id: Int
Link copied to clipboard
open override var label: String?
Link copied to clipboard
open override val name: String
Link copied to clipboard
override var previousValue: Double

The last (previous) randomly generated value. This value does not change until the next randomly generated value is obtained

Link copied to clipboard
open override var resetStartStreamOption: Boolean

If true, the stream will automatically participate in having its stream reset to its start stream via stream managers

Link copied to clipboard
override var rnStream: RNStreamIfc

rnStream provides a reference to the underlying stream of random numbers

Link copied to clipboard
open val streamNumber: Int
Link copied to clipboard
open override val value: Double

The randomly generated value. Each value will be different

Functions

Link copied to clipboard
open override fun advanceToNextSubStream()

Positions the RNG at the beginning of its next substream

Link copied to clipboard
open override fun antitheticInstance(): RVariableIfc
Link copied to clipboard
open operator fun div(x: Double): RVariableIfc
open operator fun div(other: RVariableIfc): RVariableIfc
Link copied to clipboard
open override fun instance(stream: RNStreamIfc): RVariableIfc

Makes a new instance. False allows the new instance to keep using the same underlying source of random numbers.

Link copied to clipboard
open operator fun minus(x: Double): RVariableIfc
open operator fun minus(other: RVariableIfc): RVariableIfc
Link copied to clipboard
open operator fun plus(x: Double): RVariableIfc
open operator fun plus(other: RVariableIfc): RVariableIfc
Link copied to clipboard
open fun pow(x: Double): RVariableIfc
Link copied to clipboard
open override fun resetStartStream()

The resetStartStream method will position the RNG at the beginning of its stream. This is the same location in the stream as assigned when the RNG was created and initialized.

Link copied to clipboard
open override fun resetStartSubStream()

Resets the position of the RNG at the start of the current substream

Link copied to clipboard
open fun sample(sampleSize: Int): DoubleArray

Generates a random generated sample of the give size

override fun sample(): Double
Link copied to clipboard
open fun sampleAsColumns(sampleSize: Int, nCols: Int = 1): Array<DoubleArray>

Generates the number of columns nCols with each column holding a random sample of size sampleSize

Link copied to clipboard
open fun sampleAsRows(sampleSize: Int, nRows: Int = 1): Array<DoubleArray>

Generates the number of rows nRows with each row holding a random sample of size sampleSize

Link copied to clipboard
open fun sampleInto(matrix: Array<DoubleArray>)

Fills the supplied matrix with randomly generated values

open fun sampleInto(values: DoubleArray)

Fills the supplied array with randomly generated values

Link copied to clipboard
open fun sum(numInSum: Int): Double
Link copied to clipboard
open operator fun times(x: Double): RVariableIfc
open operator fun times(other: RVariableIfc): RVariableIfc
Link copied to clipboard
open fun useStreamNumber(streamNumber: Int)

Assigns the stream associated with the supplied number from the default RNStreamProvider

Link copied to clipboard
open override fun value(): Double

The randomly generated value. Each value will be different