Source code for probnum.filtsmooth.filtsmoothposterior

"""Abstract Base Class for posteriors over states after applying filtering/smoothing"""
from abc import ABC, abstractmethod


[docs]class FiltSmoothPosterior(ABC): """Posterior Distribution over States after Filtering/Smoothing"""
[docs] @abstractmethod def __call__(self, location): """Evaluate the time-continuous posterior for a given location Parameters ---------- location : float Location, or time, at which to evaluate the posterior. Returns ------- rv : `RandomVariable` """ raise NotImplementedError
@abstractmethod def __len__(self): """Length of the discrete-time solution Corresponds to the number of filtering/smoothing steps """ raise NotImplementedError @abstractmethod def __getitem__(self, idx): """Return the corresponding index/slice of the discrete-time solution""" raise NotImplementedError