Table of Contents

Class StateComponent

Namespace
Bonsai.ML.LinearDynamicalSystems
Assembly
Bonsai.ML.LinearDynamicalSystems.dll

State component of a Kalman Filter

public class StateComponent
Inheritance
StateComponent
Inherited Members

Constructors

StateComponent()

Initializes a new instance of the StateComponent class.

public StateComponent()

StateComponent(double[,], double[,], int)

Initializes a new instance of the StateComponent class from the full state and covariance matrices given an index

public StateComponent(double[,] X, double[,] P, int i)

Parameters

X double[,]
P double[,]
i int

Properties

Mean

mean

[JsonProperty("mean")]
public double Mean { get; set; }

Property Value

double

Variance

variance

[JsonProperty("variance")]
public double Variance { get; set; }

Property Value

double

Methods

Process()

Generates a state component

public IObservable<StateComponent> Process()

Returns

IObservable<StateComponent>

Process<TSource>(IObservable<TSource>)

Generates a state component

public IObservable<StateComponent> Process<TSource>(IObservable<TSource> source)

Parameters

source IObservable<TSource>

Returns

IObservable<StateComponent>

Type Parameters

TSource