Tapping experiment - GUI help

2 Ansichten (letzte 30 Tage)
TANMAYEE PATHRE
TANMAYEE PATHRE am 9 Apr. 2019
Kommentiert: Dennis am 9 Apr. 2019
I am designing a tapping experiment in order to get the tempo of a song. The listner listens first 3 seconds of the song and then starts tapping using mouse or keyboard. The tap-interval is recorded to get the tempo. I want the GUI to display Start tapping in 3, 2 1 sec. How do I do that?
  1 Kommentar
Dennis
Dennis am 9 Apr. 2019
You can do it like this:
handles.tb=uicontrol('style','text','position',[200 100 200 40]); %create a textbox
for i=10:-1:1
handles.tb.String=sprintf('Start in %d',i); %change string of textbox (2013 or older matlab versions require different synthax)
pause(1)
end
The time between each number decrease will be a few milliseconds longer than 1 second though.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Audio I/O and Waveform Generation 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!

Translated by