How to have input function continue if enter key pressed
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I would like to have an input statement such as
response = input('Press enter to continue:','s')
and a while loop
while respond == '' end
This is not working exactly as planned. What is the best way to evaluate the return/enter key being pressed
0 commentaires
Réponse acceptée
Walter Roberson
le 24 Août 2011
Do not compare a string to '' -- a string is an array of characters, so the comparison would fail if there are any characters in the string (because the length of the character array would not be the same as the length of '' )
You can use isequal() or strcmp(), but what you should really use here is isempty()
0 commentaires
Plus de réponses (1)
Sean de Wolski
le 24 Août 2011
Could you use an inputdlg instead of input? It'll give you a few more options as far as keypressfcn/keyreleasefcn since it's a figure and you can control.
0 commentaires
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!