필터 지우기
필터 지우기

Simple Error: Too many input arguments

조회 수: 1 (최근 30일)
Drake
Drake 2014년 9월 12일
답변: Rick Rosson 2014년 9월 12일
age=input('Please tell me how old you are? -> ', 's');
answer=input('You just told me that you are ', age, 'is that correct? -> ', 's');
Error using input
Too many input arguments.
I see that I am using a string in the second input, but why is this considered "too many arguments"?
Thanks in advance

답변 (1개)

Rick Rosson
Rick Rosson 2014년 9월 12일
You need a pair of square brackets:
answer=input(['You just told me that you are ', age, 'is that correct? -> '], 's');

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by