Class Observation2D
- Namespace
- Bonsai.ML.LinearDynamicalSystems.Kinematics
- Assembly
- Bonsai.ML.LinearDynamicalSystems.dll
Observation2D of data used by Kalman Filter python class (point(x, y))
[Combinator]
[WorkflowElementCategory(ElementCategory.Source)]
public class Observation2D
- Inheritance
-
Observation2D
- Inherited Members
Properties
X
x coordinate
[JsonProperty("x")]
public double X { get; set; }
Property Value
Y
y coordinate
[JsonProperty("y")]
public double Y { get; set; }
Property Value
Methods
Process()
Generates a 2D observation
public IObservable<Observation2D> Process()
Returns
Process<TSource>(IObservable<TSource>)
Generates a 2D observation on each input
public IObservable<Observation2D> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>
Returns
Type Parameters
TSource
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.