Millisecond Forums

branch after timeout

https://forums.millisecond.com/Topic31148.aspx

By troyh - 3/19/2021

Hello! Is it possible to branch from one trial to another if a subject times out? I used e.g., if [(trial.saidTrial.latency > timeframe) branchedToTrial ] , but cannot identify where I went wrong.
By troyh - 3/19/2021

Also, I'm not sure why I cannot see my attached code. If it was not delivered I will try to attach it again in a reply.
By Dave - 3/19/2021

troyh - 3/19/2021
Also, I'm not sure why I cannot see my attached code. If it was not delivered I will try to attach it again in a reply.

A timeout means no response was submitted, so the canonical way to do this is

/ branch = [if [(trial.sometrial.response == 0) trial.someothertrial]
By troyh - 3/19/2021

Perfect, thank you