datastreams
There are four sorts of datastreams available when
`rolling`, `tiling`, or `running` windowed functions.
datastreamwindow functionsover subsequences of
1 Vectormax, sum, meanindividual values
2 Vectorscor, covordered pairs
3 Vectorsclamp, midof3ordered triples
a Matrixas with 1 Vectorcolumn values
each matrix column is processed as a single vector

Each datastream is composed of one or more data sequence[s]. The most fundamental datastream is the sequence of values that populate a vector. A function of one argument is applied over successive windows onto the data vector. Where the datastream is a matrix, every column is an independant vector.


using datastreams

See also: rolling, tiling, running