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
Properties
Mean
mean
[JsonProperty("mean")]
public double Mean { get; set; }
Property Value
Variance
variance
[JsonProperty("variance")]
public double Variance { get; set; }
Property Value
Methods
Process()
Generates a state component
public IObservable<StateComponent> Process()
Returns
Process<TSource>(IObservable<TSource>)
Generates a state component
public IObservable<StateComponent> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>
Returns
Type Parameters
TSource