case class NHPoissonProcess(lambda: VectorD, dt: Double = 1.0, stream: Int = 0) extends TimeVariate with Product with Serializable
This class generates arrival times according to a NHPoissonProcess
, an
Non-Homogeneous Process Process (NHPP), where the arrival rate function
'lambda(t)' is piece-wise constant. Rates are constant over basic time
intervals of length 'dt'.
- lambda
the vector of arrival rates
- dt
the length the basic time intervals
- stream
the random number stream
- See also
http://en.wikipedia.org/wiki/Poisson_process#Non-homogeneous
- Alphabetic
- By Inheritance
- NHPoissonProcess
- Serializable
- Serializable
- Product
- Equals
- TimeVariate
- Variate
- Error
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
val
MAXFAC: Int
- Attributes
- protected
- Definition Classes
- TimeVariate
-
var
_discrete: Boolean
Indicates whether the distribution is discrete or continuous (default)
Indicates whether the distribution is discrete or continuous (default)
- Attributes
- protected
- Definition Classes
- Variate
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
count(a: Double, b: Double): Int
- Definition Classes
- TimeVariate
-
def
count(tt: Double): Int
Compute the mean as a function of time.
Compute the mean as a function of time.
- tt
the time point for computing the mean
- Definition Classes
- TimeVariate
-
def
discrete: Boolean
Determine whether the distribution is discrete or continuous.
Determine whether the distribution is discrete or continuous.
- Definition Classes
- Variate
- val dt: Double
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
flaw(method: String, message: String): Unit
Show the flaw by printing the error message.
Show the flaw by printing the error message.
- method
the method where the error occurred
- message
the error message
- Definition Classes
- Error
-
def
gen: Double
Compute inter-arrival times of the NHPP.
Compute inter-arrival times of the NHPP. 'tlast' is a global variable.
- Definition Classes
- NHPoissonProcess → Variate
-
def
genTime: Double
Compute arrival times of the NHPP.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
igen: Int
Determine the next random integer for the particular distribution.
Determine the next random integer for the particular distribution. It is only valid for discrete random variates.
- Definition Classes
- Variate
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lambda: VectorD
-
val
mean: Double
- Definition Classes
- TimeVariate → Variate
-
def
meanF(tt: Double): Double
Compute the mean as a function of time.
Compute the mean as a function of time.
- tt
the time point for computing the mean
- Definition Classes
- NHPoissonProcess → TimeVariate
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
pf(k: Int, a: Double, b: Double): Double
Compute the probability P[ (N(b) - N(a)) = k ].
Compute the probability P[ (N(b) - N(a)) = k ].
- k
the number of arrivals in interval [a,b]
- a
the left end of the interval
- b
the right end of the interval
- Definition Classes
- NHPoissonProcess → TimeVariate
-
def
pf(k: Int, tt: Double): Double
Compute the probability of k arrivals occurring in the time interval '[0, tt]'.
Compute the probability of k arrivals occurring in the time interval '[0, tt]'.
- k
the number of arrivals in the time interval
- tt
the upper bound time value
- Definition Classes
- NHPoissonProcess → TimeVariate
-
def
pf(k: Int): Double
Compute the probability of k arrivals occurring in the time interval [0, t] where t is the current time.
Compute the probability of k arrivals occurring in the time interval [0, t] where t is the current time.
- k
the number of arrivals in the time interval
- Definition Classes
- NHPoissonProcess → TimeVariate
-
def
pf(z: Double): Double
Compute the probability function (pf): The probability density function (pdf) for continuous RV's or the probability mass function (pmf) for discrete RV's.
Compute the probability function (pf): The probability density function (pdf) for continuous RV's or the probability mass function (pmf) for discrete RV's.
- z
the mass point whose probability is sought
- Definition Classes
- TimeVariate → Variate
-
def
pmf(k: Int = 0): Array[Double]
Return the entire probability mass function (pmf) for finite discrete RV's.
Return the entire probability mass function (pmf) for finite discrete RV's.
- k
number of objects of the first type
- Definition Classes
- Variate
-
val
r: Random
Random number stream selected by the stream number
Random number stream selected by the stream number
- Attributes
- protected
- Definition Classes
- Variate
-
def
reset(): Unit
Reset the NHPP by resetting 'e' to zero.
Reset the NHPP by resetting 'e' to zero.
- Definition Classes
- NHPoissonProcess → TimeVariate
-
def
sgen: String
Determine the next random string for the particular distribution.
Determine the next random string for the particular distribution. For better random strings, overide this method.
- Definition Classes
- Variate
- val stream: Int
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )