Exit while loop and close screens after 10 mouse presses
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Katerina Tetzloff
am 23 Okt. 2015
Kommentiert: Walter Roberson
am 24 Okt. 2015
I am using Psychtoolbox to design a fake experiment. I have all of the code correct, but I can't get it to close after 10 mouse clicks. I tried to start the whole thing with for i=1:10, with the actual code in a while loop under this for loop, but I don't know how to relate i with number of mouse clicks.
Thank you!
1 Kommentar
Akzeptierte Antwort
Stalin Samuel
am 24 Okt. 2015
i = 0;
f = figure;
while i<11
w = waitforbuttonpress;
if w == 0
i =i+1;
if i ==10
close all;
break;
end
end
end
3 Kommentare
Walter Roberson
am 24 Okt. 2015
Then you can just use a for loop, since only one click will be registered for each iteration of the loop.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Timing and presenting 2D and 3D stimuli finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!