input prompt

9 vues (au cours des 30 derniers jours)
Talaria
Talaria le 21 Août 2011
Commenté : John D'Errico le 6 Juil 2019
how to make input function that displays text according to loop:
i.e. for i=1:30
g=input('enter "/i/"th line');
end
and it would display:
enter 1th line
enter 2th line
enter 3th line etc.....

Réponse acceptée

Chaowei Chen
Chaowei Chen le 21 Août 2011
for i=1:30
g=input(['enter ' int2str(i) ' th line']);
end
  1 commentaire
John D'Errico
John D'Errico le 6 Juil 2019
+1. But to be picky ... you needed to write it to know that it should be '1st', '2nd', '3rd', etc. ;-)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Trading Technologies dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by