How to request user input to press Esc or Enter ?

조회 수: 18 (최근 30일)
Sim
Sim 2022년 12월 13일
댓글: Sim 2022년 12월 13일
How to request user input to press Esc or Enter ?
% this is a pseudo-code I wrote just to give an idea about what I am trying to achieve:
answer = input('Please enter Esc to exit this code or Enter to continue:');
keepRunning = true;
while (keepRunning)
if (answer ~= Esc && answer ~= Enter) % If the user does not input either Esc or Enter
answer = input('ERROR. Please enter Esc to exit this code or Enter to continue:');
elseif (answer == Esc) % Exit this code
disp('exit the code')
keepRunning = false;
return
elseif (answer == Enter) % Continue this code and do stuff
disp('continue to run this code')
keepRunning = false;
continue % or do stuff here
end
end

채택된 답변

Jan
Jan 2022년 12월 13일
편집: Jan 2022년 12월 13일
This will not work. The input command is not sufficient to catch a pressed Esc key.
Using the input capabilities of the command window to interprete key clicks is a bad choice in general. Use a figure instead, which is nicer and allows to analyse the pressed keys using the WindowKeyPressFcn and even the WindowKeyReleaseFcn.
The command window is not powerful enough to solve such genereal purpose GUI jobs. You can do it using the undocumented Java interface, but this is fragile.
  댓글 수: 1
Sim
Sim 2022년 12월 13일
Great answer @Jan!! Thanks for showing the possible ways to take :-)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by