adjust range of timed inputs to stdev of roughly 1

This commit is contained in:
Connor Olding 2018-05-07 16:27:51 +02:00
parent 7357c8ed62
commit 7db43038ac

View file

@ -943,7 +943,7 @@ local function doit(dummy)
if cfg.time_inputs then if cfg.time_inputs then
for i=2,5 do for i=2,5 do
local v = band(trial_frames, lshift(1, i)) == 0 and -256 or 256 local v = band(trial_frames, lshift(1, i)) == 0 and -181 or 181
insert(extra_input, v) insert(extra_input, v)
end end
end end