Object

dlm.model

Dlm

Related Doc: package model

Permalink

object Dlm

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

Type Members

  1. case class Model(f: ObservationMatrix, g: SystemMatrix) extends Product with Serializable

    Permalink

    Definition of a DLM

  2. type Observation = DenseVector[Double]

    Permalink
  3. type ObservationMatrix = (Time) ⇒ DenseMatrix[Double]

    Permalink
  4. case class Parameters(v: DenseMatrix[Double], w: DenseMatrix[Double], m0: DenseVector[Double], c0: DenseMatrix[Double]) extends Product with Serializable

    Permalink

    Parameters of a DLM

  5. type State = MultivariateGaussian

    Permalink
  6. type SystemMatrix = (Time) ⇒ DenseMatrix[Double]

    Permalink
  7. type Time = Int

    Permalink

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. implicit def addModel: Semigroup[Model]

    Permalink

    Dynamic Linear Models can be combined in order to model different time dependent phenomena, for instance seasonal with trend

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def blockDiagonal(a: DenseMatrix[Double], b: DenseMatrix[Double]): DenseMatrix[Double]

    Permalink

    Build a block diagonal matrix by combining two matrices of the same size TODO: Test and check this function

  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. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  17. def outerSumModel(x: Model, y: Model): Model

    Permalink

    Similar Dynamic Linear Models can be combined in order to model multiple similar times series in a vectorised way

  18. def outerSumParameters(x: Parameters, y: Parameters): Parameters

    Permalink
  19. def polynomial(order: Int): Model

    Permalink
  20. def regression(x: Array[DenseVector[Double]]): Model

    Permalink

    A first order regression model with intercept

  21. def rotationMatrix(theta: Double): DenseMatrix[Double]

    Permalink

    Build a 2 x 2 rotation matrix

  22. def seasonal(period: Int, harmonics: Int): Model

    Permalink

    Create a seasonal model with fourier components in the system evolution matrix

  23. def simStep(mod: Model, x: DenseVector[Double], time: Time, p: Parameters): Rand[(Data, DenseVector[Double])]

    Permalink

    Simulate a single step from a DLM

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

    Permalink

    Simulate from a DLM

  25. def simulateState(mod: Model, w: DenseMatrix[Double]): Process[(Time, DenseVector[Double])]

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped