Source code for probnum.filtsmooth._bayesfiltsmooth

"""Interfaces for Bayesian filtering and smoothing."""

from probnum import randprocs


[docs]class BayesFiltSmooth: """Bayesian filtering and smoothing.""" def __init__( self, prior_process: randprocs.MarkovProcess, ): self.prior_process = prior_process