There is another thing too. When the SOA time is set to a random number, the start time for the ‘noise’ item and the ‘target’ item should be random too!!!
Hello Farbia,
I am sorry but probably nobody will programm your experiment for you. Everybody will help you if you describe your requests as accurately as possibly. For instance,
When the SOA time is set to a random number, the start time for the ‘noise’ item and the ‘target’ item should be random too!!!
So,
SOA = 0
SOA = random,randint(1,4)
The randint() method generates a integer between a given range of numbers, so in ths case between 1 and 4.
SOA = 0
SOA = random.random()
generates a float number between 0 and 1.
Your pick. I don’t know what suits your needs.
Best Jens