필터 지우기
필터 지우기

Reading user input when input is a combination of letters?

조회 수: 27 (최근 30일)
Stenila  Simon
Stenila Simon 2017년 11월 11일
댓글: Alishba Zafar 2020년 8월 5일
I'm writing an mfile that asks the user to input different letter codes (for example, ABC or BAC or CBA, etc), and depending on that letter combination, go to different functions or mfiles or do different things. How would I be able to read that in matlab? Below is basically what I'm doing so far:
prompt = 'Please input letter code:';
inp = input(prompt);
if inp == CBA
fprintf('answer is 1');
elseif inp == BAC
fprintf('answer is 0');
end
etc. But when I run something like this on MATLAB, it is giving me an error when the letters are input, saying " undefined function or variable BAC", etc. How can I avoid this happening and actually make matlab read the letter inputs?

답변 (1개)

David Goodmanson
David Goodmanson 2017년 11월 13일
Hi Stenila,
You need to get the user input as a string using the 's' option, not the usual input. Right now Matlab thinks that BAC must be the name of a function or variable, as it says. Once inp is a string you can compare it to 'BAC' :
prompt = 'Please input letter code:';
inp = input(prompt,'s');
if strcmp(inp,'CBA')
fprintf('answer is 1');
elseif strcmp(inp,'BAC');
fprintf('answer is 0');
end
If you want a case-insensitive string comparison, use strcmpi.
  댓글 수: 2
Ralph Segi
Ralph Segi 2019년 6월 24일
Thank you, it helped me! :-)
Alishba Zafar
Alishba Zafar 2020년 8월 5일
Please tell me about user dependent character choice??

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

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by