You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A "rolling window boolean" is a convolution of a 2-d vector, combined with a boolean operation.
This transform allows us to expose "onset" and "termination" transformations, where each value is the product of either the preceding or the following value:
0,0,1,1,1,0,0
results in
0,0,1,0,0,0,0
or
0,0,0,0,0,1,0
The crafty user would maybe "implement" this themselves by combining conditional and delta transforms (change in gt_0/lt_1)
The text was updated successfully, but these errors were encountered:
Peder2911
changed the title
Rolling window boolean
Rolling window boolean (onset / termination)
Mar 11, 2021
A "rolling window boolean" is a convolution of a 2-d vector, combined with a boolean operation.
This transform allows us to expose "onset" and "termination" transformations, where each value is the product of either the preceding or the following value:
results in
or
The crafty user would maybe "implement" this themselves by combining conditional and delta transforms (change in gt_0/lt_1)
The text was updated successfully, but these errors were encountered: