Can waitforbuttonpress function be used with switch cases..?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nipjyoti Sarma
il 21 Ott 2016
Commentato: Nipjyoti Sarma
il 21 Ott 2016
I have used this piece of Code but it's not working. Can you help me where I am wrong here.. for i=1:10 keydown = waitforbuttonpress; switch keydown case'0' disp(5); case'1' disp(6); end end Thank you.
0 Commenti
Risposta accettata
Massimo Zanetti
il 21 Ott 2016
Output of waitfrobuttonpress is not a string, is number:
for i=1:10
keydown = waitforbuttonpress;
switch keydown
case 0
disp(5);
case 1
disp(6);
end
end
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Dates and Time in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!