Simple Error: Too many input arguments
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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
0 Kommentare
Antworten (1)
Rick Rosson
am 12 Sep. 2014
You need a pair of square brackets:
answer=input(['You just told me that you are ', age, 'is that correct? -> '], 's');
0 Kommentare
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!