tfi
New Member
Posts: 14
|
Post by tfi on Sept 27, 2020 22:27:39 GMT
Hi there, i would like to repeat the block below(it only shows once since it is only 1 block). Right now it is set to show all 9 bitmaps in a randomised order. i would like to increase the number of blocks to 20. How can i do this please? thank you
block HandRotation
set &order 1 ## order 1 means: e=left,i=right,6=upright
tasklist
HandRotation 4 all_before_repeat
end
feedback
set &meanrt mean c4 ; select c5 == 1 && c2 == 1
text 0 100 "press space to continue"
end
|
|
|
Post by alexandra (AEC) on Sept 29, 2020 12:32:57 GMT
Hi there, I assume that you want to show feedback after 4 trials have taken place? If not, you could just increase the amount of trials before all_before_repeat. In case you like to show feedback after every 4 trials, you could write the block four more times and change the block name accordingly, e.g. HandRotation1, HandRotation2, HandRotation3 ... . Another option could be to add all reaction times to a global variable (&...), count the number of trials with another global variable, and then set another global variable to the mean. Here is a link to an overview on how to set variables. Depending on when you want to show feedback, you could then define in an if-loop when to show feedback and use "show text" to show the feedback.
|
|