-
Notifications
You must be signed in to change notification settings - Fork 5
Tips
cjgabrie edited this page Feb 28, 2022
·
2 revisions
- 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;