Trait signalo_traits::filter::ContinuousTime[][src]

pub trait ContinuousTime: Sized { }
Expand description

Trait for continuous-time systems.

Background:

Continuous time views variables as having a particular value for potentially only an infinitesimally short amount of time.

Between any two points in time there are an infinite number of other points in time.

The variable “time” ranges over the non-negative entire real number line, or depending on the context, over some subset of it. Thus time is viewed as a continuous variable. Wikipedia

Implementors