Open
Description
In #169 I outlined a use case for Domains
. In writing up that usecase, I realized that I could also work with a "Bundle" TimeSeries. Namely, I often work with a number of boolean
valued time series whose values are constant for large periods of time. However, combining the time series multiplies the number of points required to represent the time series (particularly if combined with a real valued signal).
My current solution has been to create a dictionary of TimeSeries
objects, but this ran into problems when the timeseries are defined on different domains. It would be nice to have an object that "bundles" multiple TimeSeries
objects but asserts that they all have the same domain.