How to have input function continue if enter key pressed
조회 수: 4 (최근 30일)
이전 댓글 표시
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
채택된 답변
Walter Roberson
2011년 8월 24일
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
추가 답변 (1개)
Sean de Wolski
2011년 8월 24일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!