Empirical RV
constructor(lowerLimit: Double, numPoints: Int, width: Double, streamNumber: Int = 0, streamProvider: RNStreamProviderIfc = KSLRandom.DefaultRNStreamProvider, name: String? = null)
Creates a series of numPoints points starting at the lower limit, each width units apart. Each point in the series will be equally likely to occur.
constructor(interval: Interval, numPoints: Int, streamNumber: Int = 0, streamProvider: RNStreamProviderIfc = KSLRandom.DefaultRNStreamProvider, name: String? = null)
Creates a series of numPoints points starting at the lower limit, each an equal distance apart based on the number of points. Each point in the series will be equally likely to occur.
constructor(data: DoubleArray, streamNum: Int = 0, streamProvider: RNStreamProviderIfc = KSLRandom.DefaultRNStreamProvider, name: String? = null)
Parameters
data
the data to sample from
stream Num
the random number stream number, defaults to 0, which means the next stream
stream Provider
the provider of random number streams, defaults to KSLRandom.DefaultRNStreamProvider
name
an optional name