Table of Contents

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

double

Y

y coordinate

[JsonProperty("y")]
public double Y { get; set; }

Property Value

double

Methods

Process()

Generates a 2D observation

public IObservable<Observation2D> Process()

Returns

IObservable<Observation2D>

Process<TSource>(IObservable<TSource>)

Generates a 2D observation on each input

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

Parameters

source IObservable<TSource>

Returns

IObservable<Observation2D>

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.