+xHi,
I am using Inquisit 6 and the task Mathematical Processing Task.
I want to remove the training intro, training blocks and training trial from the coding. Is there a way to remove the practice/ training and have the task remain on its own?
Thank you.
There is no need to
remove these things. You simply ought to not run them. To do so, you can simply change the <expt> elements from
<expt low>
/groups = (1 of 3)
/preinstructions = (intro)
/postinstructions = (end)
/blocks = [1 =
lowdemandintro]
</expt>
<expt moderate>
/groups = (2 of 3)
/preinstructions = (intro)
/postinstructions = (end)
/blocks = [1 =
moderatedemandintro]
</expt>
<expt high>
/groups = (3 of 3)
/preinstructions = (intro)
/postinstructions = (end)
/blocks = [1 =
highdemandintro]
</expt>
to
<expt low>
/groups = (1 of 3)
/preinstructions = (intro)
/postinstructions = (end)
/blocks = [1 =
lowdemand]
</expt>
<expt moderate>
/groups = (2 of 3)
/preinstructions = (intro)
/postinstructions = (end)
/blocks = [1 =
moderatedemand]
</expt>
<expt high>
/groups = (3 of 3)
/preinstructions = (intro)
/postinstructions = (end)
/blocks = [1 =
highdemand]
</expt>
which will not run any intro or training blocks.