Class Forecast
- Namespace
- Bonsai.ML.LinearDynamicalSystems.Kinematics
- Assembly
- Bonsai.ML.LinearDynamicalSystems.dll
Represents an operator for converting forecasts from a Kalman Filter Kinematics python class into a list of forecasted results.
[Combinator]
[WorkflowElementCategory(ElementCategory.Transform)]
public class Forecast
- Inheritance
-
Forecast
- Inherited Members
Properties
ForecastResults
Gets or sets the list of forecast results.
[JsonProperty("forecasts")]
public List<ForecastResult> ForecastResults { get; }
Property Value
Methods
Process(IObservable<PyObject>)
Converts a PyObject representing a Kalman Filter forecast into a Forecast class representing a list of forecasted results.
public IObservable<Forecast> Process(IObservable<PyObject> source)
Parameters
sourceIObservable<PyObject>