klabhub / neurostim

Design and run visual neuroscience experiments using Matlab and the Psychophysics Toolbox.
MIT License
5 stars 4 forks source link

Modification of "list" property #175

Closed dshimaoka closed 3 years ago

dshimaoka commented 3 years ago

changed setAccess of "list" property from private to public. This will enable direct manipulation of stimulus presentation sequence in rsvp, useful to achieve identical stimulus sequence across trials ("frozen noise").

dshimaoka commented 3 years ago

Thank you for the suggestion. I tried to think along your idea of the manual mode:


function shuffle(o)
…
switch upper(o.randomization)
case 'MANUAL'
o.list = o.manualSequence;

```, where `o.manualSequence` is a new property with `SetAccess = public`.
dshimaoka commented 3 years ago

New request #176 implementing the manual mode was submitted.