Determine The Input Time with tic,toc

1 vue (au cours des 30 derniers jours)
Yusuf Oguzhan Turgut
Yusuf Oguzhan Turgut le 10 Juin 2019
Commenté : Walter Roberson le 11 Juin 2019
Hello, I want to elapse the time that user spend on entering input. How can i do that ? I tried this below but MATLAB gave like 3.6175e-05 seconds. It looks really short. Here is my code
tic;
userinput = get(hObject,'String');
ts=toc;
disp(ts);
a = 5;
timeratio = ts/a ;
set(handles.text12,'String',num2str(timeratio,'%.0f'));
disp(timeratio);
  1 commentaire
Walter Roberson
Walter Roberson le 11 Juin 2019
Perhaps you should look at the third party Psychtoolbox

Connectez-vous pour commenter.

Réponse acceptée

per isakson
per isakson le 11 Juin 2019
Modifié(e) : per isakson le 11 Juin 2019
I assume that hObject is a uicontrol object of style edit.
Your current script reads the elapse time of getting the current string-value of the edit box. That time is not affected by the users interaction with the edit box.
User interaction with the edit box object invokes various callbacks (if set up properly). I assume that it is possible to let one callback run tic and another toc. The callbacks are well documented, see Callbacks for Specific Components as a starting point.

Plus de réponses (0)

Catégories

En savoir plus sur Timing and presenting 2D and 3D stimuli dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by