Trait/Object

com.github.jonnylaw.model

ParticleFilter

Related Docs: object ParticleFilter | package model

Permalink

trait ParticleFilter extends AnyRef

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

Abstract Value Members

  1. abstract def advanceState(x: Seq[State], dt: TimeIncrement, t: Time): Seq[(State, Eta)]

    Permalink
  2. abstract def calculateWeights(x: Eta, y: Observation): LogLikelihood

    Permalink
  3. abstract val mod: Model

    Permalink

    A model

  4. abstract def resample: Resample[State]

    Permalink

Concrete 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. def accFilter(data: Seq[Data], t0: Time)(particles: Int): Seq[PfState]

    Permalink

    Run a filter over a vector of data and return a vector of PfState Containing the raw particles and associated weights at each time step

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. def filter(t0: Time)(particles: Int): Pipe[Task, Data, PfState]

    Permalink

    Run a filter over a stream of data

  10. def filterWithForecast(t0: Time)(particles: Int): Pipe[Task, Data, (PfState, ForecastOut)]

    Permalink

    One step forecast filter, advances the particles ahead to the time of the next observation transforms them according to the model and calculates the expected observation and 99% credible intervals

    One step forecast filter, advances the particles ahead to the time of the next observation transforms them according to the model and calculates the expected observation and 99% credible intervals

    t0

    the initial time of the observations

    particles

    the number of particles to use in the filter/forecast

    returns

    a Pipe[Task, Data, (PfState, ForecastOut)], which transforms a stream of Data into a stream of tuples (PfState, ForecastOut)

  11. def filterWithIntervals(data: Seq[Data], t0: Time)(particles: Int): Seq[PfOut]

    Permalink

    Filter the data, but get a vector containing the mean eta, eta intervals, mean state, and credible intervals of the state

  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. def initialiseState(particles: Int, t0: Time): PfState

    Permalink
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def llFilter(t0: Time, particles: Int)(data: Seq[Data]): LogLikelihood

    Permalink

    Calculate the log-likelihood

  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 stepFilter(s: PfState, y: Data): PfState

    Permalink

    Step filter, perform one step of the particle fiilter

  22. def stepWithForecast(s: PfState, y: Data): (PfState, ForecastOut)

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped