Skip to content

Commit 6a26808

Browse files
author
Jeffrey M Girard
committed
Changes for v6.03
Updated the bin size tooltip to acknowledge the fact that different sampling rates may be selected.
1 parent c5655ed commit 6a26808

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fig_collect.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -583,12 +583,12 @@ function menu_binsize_Callback(hObject,~)
583583
'Style','text', ...
584584
'Units','Normalized', ...
585585
'Position',[.10 .50 .80 .40], ...
586-
'String','DARMA samples the joystick at 20 Hz. Samples are then averaged into temporal bins which are output in an annotation file. Bin size determines how long each bin is and thus how many samples contribute to it. Select a bin size below:');
586+
'String','DARMA samples the joystick at 10, 20, or 30 Hz. Samples are then averaged into temporal bins which are output in an annotation file. Bin size determines how long each bin is and thus how many samples contribute to it. Select a bin size below:');
587587
popup_bin = uicontrol(d, ...
588588
'Style','popup', ...
589589
'Units','Normalized', ...
590590
'Position',[.10 .35 .80 .20], ...
591-
'String',{'0.25 sec (each bin averages 5 samples)','0.50 sec (each bin averages 10 samples)','1.00 sec (each bin averages 20 samples)','2.00 sec (each bin averages 40 samples)','4.00 sec (each bin averages 80 samples)'}, ...
591+
'String',{'0.25 sec','0.50 sec','1.00 sec','2.00 sec','4.00 sec'}, ...
592592
'Value',settings.binsizeval);
593593
uicontrol(d, ...
594594
'Style','pushbutton', ...

0 commit comments

Comments
 (0)