|
Post by hwayoung on Nov 26, 2022 8:17:40 GMT
How can I include the same tasks in multiple blocks, but not duplicate any table row in all trials?
I had to separate the blocks because I needed to set the order of the tasks. There are 4 different tables each also.
So, I have 4 different tables, which is in individually in 4 different tasks. I want all the table row of our tables shown. (we have numerous blocks too)
I have tried all_before_repeat, no_repeat, and not putting anything behind, but there were always duplication of the table rows.
Does anyone know how to show all the table rows without replication?
Thank you.
ex
tasklist
t_ota 1 all_before_repeat no_repeat
t_control 1 all_before_repeat no_repeat
t_filler 1 all_before_repeat no_repeat
|
|
|
Post by alexandra (AEC) on Dec 8, 2022 20:08:05 GMT
Hi there,
in your code you show only one trial of a task. Is that only for this example or is this as you also have it in your experiment code? If you have only one trial and otherise the task in its own right, e.g. with while-loops, than the "all_before_repeat" cannot be applied. This works only, if you have, for example, 10 table rows and also stated 10 trials in your tasklist and the task itself is coded so it accounts for one trial each.
block example tasklist
t_ota 10 all_before_repeat t_control 10 all_before_repeat t_filler 10 all_before_repeat end
|
|