This first variant is used for choosing the set of time series to
operate on. It is a binary operator that matches if either of the sub-queries match. For example,
consider the following query:
Compute a new time series where each interval has the value (a OR b) where a
and b are the corresponding intervals in the input time series. For example:
Time
a
b
a OR b
00:01
0.0
0.0
0.0
00:01
0.0
1.0
1.0
00:02
1.0
0.0
1.0
00:03
1.0
1.0
1.0
00:04
0.5
1.7
1.0
The result will be a signal time series that will
be 1.0 for all intervals where the corresponding values of a or b are non-zero.
Example: