Azzera filtri
Azzera filtri

Simple Error: Too many input arguments

1 visualizzazione (ultimi 30 giorni)
Drake
Drake il 12 Set 2014
Risposto: Rick Rosson il 12 Set 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

Risposte (1)

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

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by