Simple Error: Too many input arguments

3 visualizaciones (últimos 30 días)
Drake
Drake el 12 de Sept. de 2014
Respondida: Rick Rosson el 12 de Sept. de 2014
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

Respuestas (1)

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

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by