tslib-0.1.4: Time series library

Safe HaskellNone
LanguageHaskell2010

Data.TimeSeries.Boxed

Synopsis

Documentation

newtype TSeries a Source

Boxed time series that can hold any kind of value. The internal representation is a parallel vector of UTimes and as. The vector of UTimes is storable Vector for efficiency and interoperability reasons.

Constructors

TSeries (Vector Vector Vector (UTime, a))