Simple Error: Too many input arguments
显示 更早的评论
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
2014-9-12
You need a pair of square brackets:
answer=input(['You just told me that you are ', age, 'is that correct? -> '], 's');
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!