Tips - DeNardoLab/BehaviorDEPOT GitHub Wiki
- Each behavior analyzed contains boutwise and vectorized representations that can be easily accessed for analysis. The following example demonstrates how to retrieve start/stop frames and vectors for Moving behavior:
start_inds = Behavior.Moving.Bouts(:,1);
stop_inds = Behavior.Moving.Bouts(:,2);
moving_vector = Behavior.Moving.Vector;