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
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