Simple Error: Too many input arguments

3 ビュー (過去 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 Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by