Object

dlm.model

Dglm

Related Doc: package model

Permalink

object Dglm

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Dglm
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Model(observation: (DenseVector[Double], DenseMatrix[Double]) ⇒ Rand[DenseVector[Double]], f: (Double) ⇒ DenseMatrix[Double], g: (Double) ⇒ DenseMatrix[Double], conditionalLikelihood: (DenseMatrix[Double]) ⇒ (DenseVector[Double], DenseVector[Double]) ⇒ Double) extends Product with Serializable

    Permalink

    A class representing a DGLM

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def beta(mod: Dlm.Model): Model

    Permalink

    Construct a DGLM with Beta distributed observations, with variance < mean (1 - mean)

  6. def beta(mean: Double, variance: Double): ContinuousDistr[Double]

    Permalink

    A beta distribution parameterised by the mean and variance

    A beta distribution parameterised by the mean and variance

    mean

    the mean of the resulting beta distribution

    variance

    the variance of the beta distribution

    returns

    a beta distribution

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def forecastParticles(mod: Model, xt: Vector[DenseVector[Double]], time: Double, p: Parameters): Iterator[(Double, (DenseVector[Double], DenseMatrix[Double]))]

    Permalink

    Forecast a DLM from a particle cloud representing the latent state at the end of the observations

    Forecast a DLM from a particle cloud representing the latent state at the end of the observations

    mod

    the model

    xt

    the particle cloud representing the latent state

    time

    the initial time to start the forecast from

    p

    the parameters of the model

    returns

    the time, mean observation and variance of the observation

  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. def logisticFunction(upper: Double)(number: Double): Double

    Permalink

    Logistic function to transform the number onto a range between 0 and upper

    Logistic function to transform the number onto a range between 0 and upper

    upper

    the upper limit of the logistic function

    number

    the number to be transformed

    returns

    a number between 0 and upper

  16. def meanCovSamples(samples: Seq[DenseVector[Double]]): (DenseVector[Double], DenseMatrix[Double])

    Permalink

    Calculate the mean and covariance of a sequence of DenseVectors

  17. def meanVarObservation(mod: Model, xt: Vector[DenseVector[Double]], v: DenseMatrix[Double]): Rand[(DenseVector[Double], DenseMatrix[Double])]

    Permalink

    Calculate the mean and variance of an observation at tim t given a particle cloud representing the latent-state at time t and the model specification

    Calculate the mean and variance of an observation at tim t given a particle cloud representing the latent-state at time t and the model specification

    mod

    a DGLM specification

    xt

    the particle cloud representing the latent state at time t

    v

    the observation noise variance

    returns

    mean and variance of observation

  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. def poisson(mod: Dlm.Model): Model

    Permalink

    Construct a DGLM with Poisson distributed observations

  22. def simStep(mod: Model, p: Parameters): (Double, DenseVector[Double]) ⇒ Rand[(Data, DenseVector[Double])]

    Permalink

    Simulate a single step of a DGLM model

  23. def simulate(mod: Model, p: Parameters): Process[(Data, DenseVector[Double])]

    Permalink

    Simulate from a dlm model at regular time intervals

  24. def studentT(df: Int, mod: Dlm.Model): Model

    Permalink

    Define a DGLM with Student's t observation errors

  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped