How to catch reaction time with MATLAB; How to save text file from command window automatically
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Dear all
I would like to ask two questions:
1. I use command "fprintf" to write the result to command window, and I was wondering: does MATLAB have the command that can save the result posted on command window " automatically" ?
2. I have written a script to catch the reaction time( the time between picture appears and the participant's response by pressing the keyboard( it work with cogent). I use "tic" and "toc" to set the time start and stop to get this period. But I don't know why I put "toc" in the " if" statement, it cannot read.
ex.
S1=tic;
[ks, kp] = cgkeymap;
kp=find(kp);
if kp==77 %key:righ
S2=toc(S1);
kp=77 means to press the right key, and Matlab should detect this and record S2....But I am confused why it cannot work.
I hope any expert can help me and I will be grateful for your kind help.
Many thanks in advance
3 Commenti
Hopester Hope
il 8 Mar 2012
Surely that's only true if the sources of latency are correlated with your effect(s) of interest? If not, those sources of latency are essentially noise, which will diminish the power of your experiment, but still leave it perfectly valid.
Daniel Shub
il 8 Mar 2012
@Hopester you are correct that the main effect will be to diminish the power. The problem is that for many experiments it will diminish the power to such an extent that the data will be meaningless (especially if the power calculation does not take into account this additional noise). The other effect is that I don't tend to trust results in which the experimenter choses not to take simple steps to eliminate a huge source of noise.
Risposte (3)
Ian
il 6 Set 2011
Um, cogent is really not very good for precise timing, and in addition you are not controlling for any OS/hardware latency fluctuations. My advice, if you actually care about recording reaction times accurately, is to first use Psychophysics toolbox, which timestamps the flip with high precision and corrects for OS latency (that is the time you use for S1, much more accurate than a tic after cgflip), and also returns a time with its keypress functions which is used to determine the reaction time:
Secondly, you should really use a hardware button box - keyboards and mice have a poll latency in the 10s of milliseconds (at least in Windows) which is fairly inaccurate (at least in psychophysics). Button boxes overcome the inaccuracy by using an internal high resolution hardware timer and a way to synchronise with the host computer.
0 Commenti
Chaowei Chen
il 3 Set 2011
1. doc diary 2. I think the problem happens at kp=find(kp) It means wherever kp is nonzero, assign the position to kp.
My modification is
S1=tic; [ks, kp] = cgkeymap; if kp=='M', S2=toc(S1),end
1 Commento
Kristina
il 5 Set 2011
1 Commento
Fangjun Jiang
il 5 Set 2011
0.00063s is not really that close to zero. It seems reasonable to me! Try a few other examples or take a look at 'doc tic'.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!